mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
testdata for IDEA-67592
This commit is contained in:
@@ -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> {}
|
||||
}
|
||||
@@ -857,4 +857,8 @@ public class GenericsHighlighting8Test extends LightDaemonAnalyzerTestCase {
|
||||
public void testIDEA67746() throws Exception {
|
||||
doTest();
|
||||
}
|
||||
|
||||
public void testIDEA67592() throws Exception {
|
||||
doTest();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user