blob: 46a6b8db81f31e8d8e826c6b46fccf80e84bd9b2 [file] [log] [blame]
class Test {
public static final Test TEST = new Test("text") {
public void foo() {}
};
public Test(@org.jetbrains.annotations.NonNls String p) {
}
public abstract void foo();
}