blob: 58f7e678befa3ce5d33c8f0d231d6b694e1f937c [file] [log] [blame]
fun foo() {
val a = 1
val b: Int
b = 2
42
}
fun bar(foo: Foo) {
foo.c
foo.c = 2
42
}
interface Foo {
var c: Int
}