mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 11:00:04 +07:00
16 lines
297 B
Groovy
16 lines
297 B
Groovy
import org.jetbrains.annotations.NotNull
|
|
|
|
@SuppressWarnings("unused")
|
|
class GroovyInnerClass {
|
|
GroovyInnerClass() {
|
|
new Inner(null, "")
|
|
}
|
|
|
|
static void fail() {
|
|
new Inner(new GroovyInnerClass(), "", null)
|
|
}
|
|
|
|
private class Inner {
|
|
Inner(String s1, @NotNull String s2) { }
|
|
}
|
|
} |