blob: 0c00daf5196d6c9d4fd82d696a8a10f14289c688 [file]
// FIR_IDENTICAL
package test
class Test {
fun test(): Int = 12
companion object {
val a = <!UNRESOLVED_REFERENCE!>test<!>() // Check if resolver will be able to infer type of a variable
}
}