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