open annotation class A : Annotation { val x: Int field = x get constructor(x: Int) /* primary */ { super/*Any*/() /* () */ } } @A(x = 1) fun test1() { } @A(x = 2) fun test2() { } const val ONE: Int field = 1 get