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