testdata for IDEA-67592

This commit is contained in:
Anna Kozlova
2015-05-20 22:41:04 +02:00
parent e529861e4a
commit d2c76135df
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
interface A
{
interface B { }
}
interface D
{
interface B { }
}
interface C extends A, D
{
interface E extends <error descr="Reference to 'B' is ambiguous, both 'A.B' and 'D.B' match">B</error> {}
}

View File

@@ -857,4 +857,8 @@ public class GenericsHighlighting8Test extends LightDaemonAnalyzerTestCase {
public void testIDEA67746() throws Exception {
doTest();
}
public void testIDEA67592() throws Exception {
doTest();
}
}