mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 15:44:48 +07:00
GitOrigin-RevId: f8b1b2036656ff5a4579dff82592e7bf4cfad8f9
9 lines
228 B
Java
9 lines
228 B
Java
// "Qualify static 'NAME' access with reference to class 'Grotesk'" "true-preview"
|
|
class Dreadful implements Grotesk {
|
|
void x() {
|
|
System.out.println(this<caret>.NAME);
|
|
}
|
|
}
|
|
interface Grotesk {
|
|
String NAME = "Grotesk";
|
|
} |