Files
kotlin-fork/compiler/testData/asJava/lightClasses/lightClassByPsi/scripts/InnerClasses.kts
T
Jinseong Jeon f9086daf4d SLC: add support for .kts
^KTIJ-21108
^KT-50241
^KT-55626 Fixed
2023-04-25 14:49:03 +02:00

12 lines
142 B
Kotlin
Vendored

class Bar(val a: Int) {
val b: Int = { 0 }()
fun getAPlusB() = a + b
class Baz {
fun doSomething() {
}
}
}