mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 06:01:00 +07:00
GitOrigin-RevId: 3a7a4e0ac2d057faf1e534b7e424c958625aa285
20 lines
294 B
Java
20 lines
294 B
Java
import one.Super;
|
|
import two.*;
|
|
import three.*;
|
|
|
|
class DoNotInsertImportForClassVisibleByInheritance implements Super {
|
|
One one;
|
|
Two two;
|
|
Three three;
|
|
Four four;
|
|
Five five;
|
|
Six six;
|
|
Seven seven;
|
|
Eight eight;
|
|
Nine nine;
|
|
Ten ten;
|
|
|
|
Result x() {
|
|
return new Result();
|
|
}
|
|
} |