Files
kotlin-fork/idea/testData/checker/regression/ScopeForSecondaryConstructors.kt
T
2012-11-12 19:54:22 +04:00

19 lines
249 B
Kotlin

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
}
}