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