Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inference
/
NoInferenceFromDeclaredBounds.kt
blob: 522939fdaba983e81f01fe6c8def230aa8025b38 [
file
]
// FIR_IDENTICAL
fun
<
T
:
Any
>
fooT22
()
:
T
?
{
return
null
}
fun foo1
()
{
<!
NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER
!>
fooT22
<!>()
}
val n
:
Nothing
=
null
.
sure
()
fun
<
T
:
Any
>
T
?.
sure
()
:
T
=
this
!!