mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 19:24:40 +07:00
IJ-CR-101642 GitOrigin-RevId: ed911621e808a7bf1ceff70a321685df424e3ec1
10 lines
117 B
Java
10 lines
117 B
Java
// "Make 'A' extend 'B'" "true-preview"
|
|
class B {}
|
|
|
|
class A extends B {
|
|
A(B b) {
|
|
}
|
|
|
|
A a = new A(this);
|
|
}
|