mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
17 lines
226 B
Java
17 lines
226 B
Java
public class Clas extends Clas2{
|
|
int foo;
|
|
|
|
public Clas(int foo, int foo1) {<caret>
|
|
super(foo);
|
|
this.foo = foo1;
|
|
}
|
|
}
|
|
|
|
class Clas2 {
|
|
int foo;
|
|
|
|
Clas2(int foo) {
|
|
this.foo = foo;
|
|
}
|
|
}
|