mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
17 lines
294 B
Java
17 lines
294 B
Java
// "Implement methods" "true-preview"
|
|
class Test {
|
|
class A<T> {
|
|
public class Inner { }
|
|
}
|
|
|
|
interface B<T> {
|
|
T foo();
|
|
}
|
|
|
|
class D implements B<A<String>.Inner> {
|
|
@Override
|
|
public A<String>.Inner foo() {
|
|
return null;
|
|
}
|
|
}
|
|
} |