83c1a75c1e
Fix incorrectly rebasedce0a3a57dfThis reverts commit3d0126d5
19 lines
377 B
Kotlin
Vendored
19 lines
377 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// SKIP_TXT
|
|
// !LANGUAGE: +InstantiationOfAnnotationClasses
|
|
|
|
import kotlin.reflect.KClass
|
|
|
|
annotation class A
|
|
annotation class B(val int: Int)
|
|
annotation class C(val int: Int = 42)
|
|
|
|
annotation class G<T: Any>(val int: KClass<T>)
|
|
|
|
fun box() {
|
|
val a = A()
|
|
val b = B(4)
|
|
val c = C()
|
|
val foo = <!ANNOTATION_CLASS_CONSTRUCTOR_CALL!>G(Int::class)<!>
|
|
}
|