blob: 090df5ab0567b07b019c307ff01847ea4e9b95e9 [file]
// RUN_PIPELINE_TILL: FRONTEND
fun test() = 3
fun <T> proxy(t: T) = t
class A {
val test = test()
}
class B {
val test = proxy(test())
}
class C {
val bar = test()
val test = <!UNRESOLVED_REFERENCE!>bar<!>()
}
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, integerLiteral, nullableType, propertyDeclaration,
typeParameter */