Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
nullabilityAndSmartCasts
/
smartCastReceiverWithGenerics.fir.kt
blob: d2df085942cd39efcb963f93cf8132719ac06b19 [
file
]
fun test
(
a
:
Any
?)
{
if
(
a
!=
null
)
{
a
.
foo
(
11
)
}
}
fun
<
T
>
Any
.
foo
(
t
:
T
)
=
t