mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
13 lines
163 B
Java
13 lines
163 B
Java
package c;
|
|
import a.*;
|
|
|
|
class Derived extends Base {
|
|
{
|
|
Foo<String> b = new Foo<>(super.createString()) {};
|
|
}
|
|
|
|
class Foo<T> {
|
|
Foo(T t) {
|
|
}
|
|
}
|
|
} |