Files
kotlin-fork/idea/testData/checker/regression/ScopeForSecondaryConstructors.jet
T
Andrey Breslav 255b65c667 KT-2363 Drop secondary constructors
Test data updated
2012-07-19 21:01:33 +04:00

19 lines
249 B
Plaintext

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