mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-26 01:05:04 +07:00
7e1064ea3c
GitOrigin-RevId: 22a46c15d8900d8a31514846755a013f6a67ad42
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 = "";
|
|
} |