Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
cast
/
NullableToNullable.kt
blob: ef045bf58f88c41e18d7a40ec726f7bfc3a6cc3c [
file
]
// FIR_IDENTICAL
// From KT-13324: always succeeds
val x
=
null
as
String
?
// From KT-260: sometimes succeeds
fun foo
(
a
:
String
?):
Int
?
{
val c
=
a
as
?
Int
?
return
c
}