mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
10 lines
115 B
Java
Vendored
10 lines
115 B
Java
Vendored
package test2;
|
|
|
|
import test.A;
|
|
import test.A.B;
|
|
|
|
class Test {
|
|
B foo() {
|
|
return new A().new B();
|
|
}
|
|
} |