Files
kotlin-fork/libraries/tools/kotlinp/testData/LocalClass.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

10 lines
117 B
Kotlin
Vendored

class A {
init {
class L<T> {
inner class I
fun x(l: L<I>) {}
}
}
}