mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 08:31:28 +00:00
10 lines
132 B
Java
Vendored
10 lines
132 B
Java
Vendored
package foo;
|
|
|
|
public class A {
|
|
public Nested nested() {
|
|
return new Nested();
|
|
}
|
|
|
|
public static class Nested {}
|
|
}
|