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

This commit is contained in:
peter
2016-02-26 15:19:04 +01:00
parent 2bcb8887e0
commit b3a7925265
2 changed files with 10 additions and 0 deletions
@@ -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 {}
@@ -240,4 +240,5 @@ class Test88 {
configureByTestName()
myFixture.assertPreferredCompletionItems(0, 'toString', 'wait')
}
public void testUnexpectedLambdaInAmbiguousCall() { doAntiTest() }
}