mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-19 17:29:34 +07:00
9 lines
180 B
Java
9 lines
180 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class EnclosingClass {
|
|
public static Object main() {
|
|
return new Object() {
|
|
void foo(@NotNull String s) {}
|
|
};
|
|
}
|
|
} |