blob: 24629c1345de5f6bcdac22ee9680510fb4e838c3 [file] [log] [blame]
class A {
fun bar() = 1
}
fun foo(a: A) {
val a1 = a
val x = a1.bar()
}