mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 04:44:53 +07:00
GitOrigin-RevId: 94aaaa37713d2df34c939298d3bc1be721e7ac38
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) {
|
|
}
|
|
} |