Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inference
/
NoInferenceFromDeclaredBounds.kt
blob: 86021c301c0a69a0f50ac861b21652c327daabf7 [
file
]
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
!!