mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 12:03:57 +07:00
GitOrigin-RevId: 7226e492ffe7889bfbabab6dd9ea3d04d64a1d0f
10 lines
184 B
Java
10 lines
184 B
Java
// "Qualify static 'm()' call with reference to class 'I'" "true-preview"
|
|
interface I {
|
|
static void m() {}
|
|
}
|
|
|
|
class A implements I {
|
|
{
|
|
Runnable r = () -> I.m();
|
|
}
|
|
} |