12 lines
168 B
Kotlin
Vendored
12 lines
168 B
Kotlin
Vendored
// WITH_STDLIB
|
|
import kotlin.reflect.KClass
|
|
|
|
annotation class Ann(val kClass: KClass<*>)
|
|
|
|
class A {
|
|
@Ann(EmptyList::class)
|
|
fun foo() {}
|
|
|
|
object EmptyList
|
|
}
|