mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: df403c3335fff896717a869cb37cf5b474019873
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> { }
|
|
} |