mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
17 lines
260 B
Java
17 lines
260 B
Java
// "Import static constant 'foo.B.aaaaaaa'" "true-preview"
|
|
package foo;
|
|
|
|
import static foo.B.aaaaaaa;
|
|
|
|
public class X {
|
|
{
|
|
if (1 == aaaaaaa);
|
|
}
|
|
}
|
|
|
|
class B {
|
|
public static Integer aaaaaaa = 1;
|
|
}
|
|
class B1 {
|
|
public static String aaaaaaa = "";
|
|
} |