mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
13 lines
138 B
Java
Vendored
13 lines
138 B
Java
Vendored
class NestedClasses {
|
|
public static class Nested {
|
|
void func1() {
|
|
|
|
}
|
|
}
|
|
|
|
public class Inner {
|
|
void func2() {
|
|
|
|
}
|
|
}
|
|
} |