Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
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