Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
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
}
}