blob: ebddcbdffc7af2e354a91d9676e673177599b6e2 [file] [log] [blame]
interface A {
def a()
}
def x = new A<caret>() {
def a() {
print "wow"
}
}