Files
kotlin-fork/libraries/tools/kotlinp/testData/NestedClasses.kt
T
Alexander Udalov 4b284a4890 Add kotlinp, a tool to print Kotlin metadata in class/module files
At the moment, it's not published anywhere, but that may change soon

 #KT-23198
2018-05-16 17:16:21 +02:00

17 lines
219 B
Kotlin
Vendored

interface A {
interface B {
interface C
}
companion object D {
enum class E {
E1,
E2,
}
sealed class F {
class G : F()
}
}
}