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,12 @@
class Test {
void test() {
I b1 = System::exit;
a(b<caret>1);
}
void a(Object b) {}
interface I {
void i(int i);
}
}