mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
testdata for IDEA-139090
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
interface I<T extends I<T>> {
|
||||
T foo();
|
||||
}
|
||||
|
||||
class C {
|
||||
void baz(I<?> x) {
|
||||
bar(x.foo(), x);
|
||||
}
|
||||
|
||||
<T> void bar(T x, T y) { }
|
||||
}
|
||||
+4
@@ -845,4 +845,8 @@ public class GenericsHighlighting8Test extends LightDaemonAnalyzerTestCase {
|
||||
public void testIDEA57320() throws Exception {
|
||||
doTest();
|
||||
}
|
||||
|
||||
public void testIDEA139090() throws Exception {
|
||||
doTest();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user