Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
callableReference
/
unused.fir.kt
blob: 6d8d0a6ea1d3a3ec6e9655c4cf8d92560d71c6ca [
file
]
// !DIAGNOSTICS: +UNUSED_EXPRESSION
fun foo
()
{
}
class
A
{
fun foo
()
{
}
class
B
}
fun A
.
bar
()
{
}
fun test
()
{
::
foo
::
A
A
::
B
A
::
foo
A
::
bar
}