Files
kotlin-fork/compiler/testData/diagnostics/tests/AnonymousInitializerVarAndConstructor.jet
T

11 lines
110 B
Plaintext

// http://youtrack.jetbrains.net/issue/KT-419
class A(w: Int) {
var c = w
{
c = 81
}
}