7f627ab480
These are mostly mechanical changes.
9 lines
157 B
Kotlin
Vendored
9 lines
157 B
Kotlin
Vendored
class Foo {
|
|
class Bar(val a: Int, val b: Int) {
|
|
fun getAPlusB() = a + b
|
|
class Baz {
|
|
fun doNothing() = Unit
|
|
}
|
|
}
|
|
}
|