mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 21:43:33 +07:00
advHighlighting -> light test case
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
package pck;
|
||||
class Test {
|
||||
void test() {
|
||||
B.method(new ArgumentB());
|
||||
}
|
||||
}
|
||||
|
||||
class A {
|
||||
static void method(ArgumentA a) { }
|
||||
}
|
||||
|
||||
class B extends A {
|
||||
static void method(ArgumentB b) { }
|
||||
}
|
||||
|
||||
class ArgumentA<T> {}
|
||||
class ArgumentB extends ArgumentA<Object> {}
|
||||
Reference in New Issue
Block a user