mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
14 lines
192 B
Java
14 lines
192 B
Java
class Parent<T> {
|
|
T field;
|
|
|
|
public Parent(T field) {
|
|
this.field = field;
|
|
}
|
|
}
|
|
|
|
class Child<Integer> extends Parent<Integer> {
|
|
Child(Integer field) {
|
|
super(field);
|
|
}
|
|
}
|