mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
13 lines
149 B
Java
13 lines
149 B
Java
class Parent<T> {
|
|
T field;
|
|
|
|
public Parent(T field) {
|
|
this.field = field;
|
|
}
|
|
}
|
|
|
|
class Child<Integer> extends Parent<Integer> {
|
|
<caret>
|
|
|
|
}
|