method refs: do not insert ; in calls/exprs (IDEA-92713)

This commit is contained in:
anna
2012-10-11 21:12:07 +02:00
parent 53e2791720
commit b8fb9f7f36
5 changed files with 27 additions and 3 deletions
@@ -0,0 +1,9 @@
import java.util.*;
class Test {
void aaa(Test p) { return 1; }
void test() {
c(Test::c);
}
void c(Comparator<Test> c){}
}