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