Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
objects
/
invokeOnInnerObject.fir.kt
blob: ea5206f40a938218305beadbb69fd1097bbdadfa [
file
]
//no nested class access via instance reference error
fun test
()
{
A
.
Companion
.
f
(<!
ARGUMENT_TYPE_MISMATCH
!>
""
<!>)
}
class
A
()
{
companion
object
{
object
f
{
operator
fun invoke
(
i
:
Int
)
=
i
}
}
}