14 lines
159 B
Kotlin
Vendored
14 lines
159 B
Kotlin
Vendored
// InnerClasses
|
|
|
|
class Bar(val a: Int) {
|
|
val b: Int = { 0 }()
|
|
|
|
fun getAPlusB() = a + b
|
|
|
|
class Baz {
|
|
fun doSomething() {
|
|
|
|
}
|
|
}
|
|
}
|