mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:08:54 +07:00
13 lines
194 B
Java
13 lines
194 B
Java
// "Create constructor in 'Base'" "true"
|
|
class Base {
|
|
public Base(int i, Object o) {
|
|
|
|
}
|
|
}
|
|
|
|
public class Derived extends Base {
|
|
Derived () {
|
|
super (1, new Object ());
|
|
}
|
|
}
|