Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
callableReference
/
whitespacesInExpression.kt
blob: 94fb3e1b178fcc2b44388922c87e2598a4b5cd19 [
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
)
}