Files
kotlin-fork/compiler/testData/ir/irText/expressions/bangbang.kt
T
Dmitry Petrov 57c1b3e0e2 '!!' operator
2016-10-18 09:08:34 +03:00

3 lines
62 B
Kotlin
Vendored

fun test1(a: Any?) = a!!
fun test2(a: Any?) = a?.hashCode()!!