mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 15:54:05 +00:00
14 lines
145 B
Kotlin
Vendored
14 lines
145 B
Kotlin
Vendored
fun test1(): String? {
|
|
return null
|
|
}
|
|
|
|
fun test2(): BooleanArray? {
|
|
return null
|
|
}
|
|
|
|
fun test3(): Unit? {
|
|
return null
|
|
}
|
|
|
|
// 0 CHECKCAST
|