Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b3a2b4df653a2684b2b0316549ba32b028c37bf2
/
.
/
plugins
/
power-assert
/
testData
/
codegen
/
cast
/
SafeCast.box.txt
blob: 83d60e3f727a69ebce6c88e34eb990f09c3560c4 [
file
]
---
assert((a as? String)?.length == 5)
| | | |
| | | false
| | 4
| test
test
---
---
assert((a as? String)?.length == 5)
| | | |
| | | false
| | null
| null
1
---
---
requireNotNull(a as? String) { "" }
| |
| null
1
---