Files
kotlin-fork/js/js.translator/testData/box/expression/cast/reifiedToNotNull.kt
T
2016-09-29 12:00:40 +03:00

22 lines
412 B
Kotlin
Vendored

package foo
// CHECK_NOT_CALLED: test
interface A
class AImpl: A
inline
fun <reified T> test(x: Any?): T = x as T
fun box(): String {
var a: A = AImpl()
assertEquals(a, test<A>(a), "a = AImpl()")
a = object : A {}
assertEquals(a, test<A>(a), "a = object : A{}")
failsClassCast("test(null)") { test<A>(null) }
failsClassCast("test(object{})") { test<A>(object{}) }
return "OK"
}