blob: 55a1aab8f7259ed53e5dacdc05b068244c24fc1f [file] [log] [blame]
// "Make variable mutable" "true"
class Test {
var a: String
init {
val t = object {
fun some() {
a = "12"
}
}
a = "2"
t.some()
}
}