blob: 01c6a4d0bf3e3f441b5d864d2d02590766527a3c [file] [log] [blame]
fun <caret>foo(n: Int): Int = 1
class A(val n: Int)
fun A.bar(n: Int): Int {
return foo(n) + this.n
}