Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
callableReference
/
whitespacesInExpression.kt
blob: cd336aa8bb5abab58c3e9909340ded0aea551d54 [
file
]
// FIR_IDENTICAL
// !CHECK_TYPE
class
Foo
fun
Foo
?.
bar
()
{}
fun test
()
{
val r1
=
Foo
?::
bar
checkSubtype
<(
Foo
?)
->
Unit
>(
r1
)
val r2
=
Foo
?
::
bar
checkSubtype
<(
Foo
?)
->
Unit
>(
r2
)
val r3
=
Foo
?
?
::
bar
checkSubtype
<(
Foo
?)
->
Unit
>(
r3
)
}