blob: 5665cf1cbcbbb948e49d87f843b86edf812ebf72 [file] [log] [blame]
class Bar {
def call(int a) {}
}
class Foo {
Bar getProp() {new Bar()}
def foo() {
prop<warning descr="'call' in 'Bar' cannot be applied to '(java.lang.Integer, java.lang.Integer)'">(2, 3)</warning>
prop(2)
prop<warning descr="'call' in 'Bar' cannot be applied to '()'">()</warning>
}
}