Files
kotlin/compiler/testData/codegen/box/reflection/noReflectAtRuntime/simpleClassLiterals.kt
2016-11-09 21:41:12 +03:00

18 lines
326 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// WITH_RUNTIME
import kotlin.test.assertNotNull
class Klass
fun box(): String {
assertNotNull(Int::class)
assertNotNull(String::class)
assertNotNull(Klass::class)
assertNotNull(Error::class)
return "OK"
}