mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
IJ-CR-101642 GitOrigin-RevId: ed911621e808a7bf1ceff70a321685df424e3ec1
10 lines
135 B
Java
10 lines
135 B
Java
// "Make 'A' extend 'B'" "true-preview"
|
|
class B {}
|
|
|
|
class A {
|
|
int foo(B b) {
|
|
B bz = t<caret>his;
|
|
return 1;
|
|
}
|
|
}
|