mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
13 lines
186 B
Java
13 lines
186 B
Java
// "Add static import for 'test.Bar.Foo'" "true"
|
|
package test;
|
|
|
|
import static test.Bar.Foo;
|
|
|
|
class Bar {
|
|
public static class Foo {}
|
|
}
|
|
public class OOO{
|
|
{
|
|
Foo foo;
|
|
}
|
|
} |