mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
(cherry picked from commit 94aaaa37713d2df34c939298d3bc1be721e7ac38) (cherry picked from commit 864adf41e4b630de48aebd9719b39e24777aa890) IJ-MR-169535 GitOrigin-RevId: 88137eae05c26682b1a373a59cea99d25aea0577
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) {
|
|
}
|
|
} |