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