b6c32edc43
#KT-18353 Fixed
8 lines
156 B
Kotlin
Vendored
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
|
|
}
|
|
}
|
|
} |