Files
kotlin/plugins/uast-kotlin/testData/InnerClasses.kt
Vyacheslav Gerasimov b6c32edc43 Implement Kotlin Script support in UAST
#KT-18353 Fixed
2017-09-12 13:10:38 +03:00

8 lines
156 B
Kotlin
Vendored

class Foo {
class Bar(val a: Int, val b: Int) {
fun getAPlusB() = a + b
class Baz {
fun doNothing() = Unit
}
}
}