AIOOBE IDEA-103980

(cherry picked from commit 235e1ab6ff11856c91e6c5afded3209879ac473e)
This commit is contained in:
anna
2013-03-27 18:29:27 +01:00
parent 5109e11a4e
commit cb99f86169
3 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
class Demo {
public void f1() {
f2<error descr="'f2()' in 'Demo' cannot be applied to '(int, <lambda expression>)'">(2, input -> input)</error>;
}
public void f2() {
}
public void f2(Object... params) {
}
}