mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
advHighlighting -> light test case
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
package pck;
|
||||
|
||||
interface A<T>
|
||||
{
|
||||
T foo();
|
||||
}
|
||||
|
||||
interface B<T> extends A<T[]> { }
|
||||
|
||||
class C<T extends A<Object[]> & B<Object>>
|
||||
{
|
||||
void foo(T x)
|
||||
{
|
||||
Object[] foo = x.foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user