mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 15:53:36 +00:00
32 lines
411 B
Kotlin
Vendored
32 lines
411 B
Kotlin
Vendored
package test
|
|
|
|
class NestedClasses {
|
|
fun f() {
|
|
}
|
|
|
|
private class Nested {
|
|
fun f() {
|
|
}
|
|
|
|
public class NN {
|
|
fun f() {
|
|
}
|
|
}
|
|
|
|
inner class NI {
|
|
fun f() {
|
|
}
|
|
}
|
|
}
|
|
|
|
public inner class Inner {
|
|
fun f() {
|
|
}
|
|
|
|
private inner class II {
|
|
fun f() {
|
|
}
|
|
}
|
|
}
|
|
}
|