Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
classObjects
/
resolveFunctionInsideClassObject.kt
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
}
}