12 lines
132 B
Kotlin
Vendored
12 lines
132 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// http://youtrack.jetbrains.net/issue/KT-419
|
|
|
|
class A(w: Int) {
|
|
var c = w
|
|
|
|
init {
|
|
c = 81
|
|
}
|
|
}
|
|
|