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