mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-23 15:49:31 +07:00
11 lines
144 B
Java
11 lines
144 B
Java
public class Sample extends Parent {
|
|
public Sample() {
|
|
int a = 1;
|
|
super<caret>(a);
|
|
}
|
|
}
|
|
|
|
class Parent{
|
|
public Parent(int a) {
|
|
}
|
|
} |