mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
9 lines
199 B
Java
9 lines
199 B
Java
import pkg.Bar;
|
|
import pkg.enum.Foo;
|
|
|
|
class Test {
|
|
void m() {
|
|
Bar b = new Bar();
|
|
b.doSomething(Foo.FOO); // with language level JDK 1.4 'enum' shouldn't be a keyword (see IDEA-67556)
|
|
}
|
|
} |