Files
kotlin-fork/compiler/testData/codegen/boxInline/reified/kt6988.1.kt
T
2015-10-22 16:06:10 +03:00

10 lines
150 B
Kotlin
Vendored

import test.*
public class A()
fun box(): String {
val s = "yo".inlineMeIfYouCan<A>()().call()
if (s !is A) return "fail"
return "OK"
}