blob: aa00591ee02ff2af72e406767b0d9e373c65b7b6 [file] [log] [blame]
class Foo {
boolean isSmall() {}
Boolean isBig() {}
def isInferred() {
true
}
}
def x = new Foo().small
def y = new Foo().<warning descr="Cannot resolve symbol 'big'">big</warning>
def z = new Foo().<warning descr="Cannot resolve symbol 'inferred'">inferred</warning>