mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
11 lines
115 B
Kotlin
Vendored
11 lines
115 B
Kotlin
Vendored
// http://youtrack.jetbrains.net/issue/KT-419
|
|
|
|
class A(w: Int) {
|
|
var c = w
|
|
|
|
init {
|
|
c = 81
|
|
}
|
|
}
|
|
|