a test for EA-78631 - IAE: LightVariableBuilder.<init> (IDEA-CR-8189)

This commit is contained in:
peter
2016-02-26 15:18:13 +01:00
parent 2bcb8887e0
commit b3a7925265
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
class Foo {
{
zoo(o -> o.<caret>)
}
void zoo(NonLambda arg, int a) {}
void zoo(NonLambda arg, int a, int b) {}
}
class NonLambda {}