surround lambda/method refs with cast when inline in expression list (IDEA-92742)

This commit is contained in:
anna
2012-10-10 17:19:44 +02:00
parent a927ecf5d1
commit 7d4be5d223
6 changed files with 59 additions and 1 deletions
@@ -0,0 +1,11 @@
class Test {
void test() {
a(System::exit);
}
void a(I b) {}
interface I {
void i(int i);
}
}