mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
6 lines
145 B
Java
Vendored
6 lines
145 B
Java
Vendored
public class InnerClassWithoutName {
|
|
public void uses() {
|
|
Test5 test5 = new Test5();
|
|
Test5.In1 in1 = test5.new In1();
|
|
}
|
|
} |