Files
kotlin-fork/idea/testData/checker/regression/ScopeForSecondaryConstructors.jet
T

19 lines
323 B
Plaintext

class Foo(var bar : Int, var barr : Int, var barrr : Int) {
{
bar = 1
barr = 1
barrr = 1
1 : Int
this : Foo
}
this(var bar : Int) : this(1, 1, 1) {
bar = <warning>1</warning>
this.bar
1 : Int
val <warning>a</warning> : Int =1
this : Foo
}
}