Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
callableReference
/
callableReferencesToCompanionMembers.fir.kt
blob: 20ab56733de6a51db369b36dee6560a485dd24e8 [
file
]
// FIR_DUMP
class
Foo
{
companion
object
{
fun bar
()
{}
val baz
=
42
}
}
val x1
=
Foo
::
bar
val x2
=
Foo
.
Companion
::
bar
val x3
=
Foo
::
baz
val x4
=
Foo
.
Companion
::
baz