Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
cast
/
NullableToNullable.kt
blob: cd76ae9a3c2329de699a97bdefbca39681150ebc [
file
]
// 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
}