Cleanup deprecated symbol usages in testData
This commit is contained in:
@@ -6,7 +6,7 @@ annotation class Ann(val c1: Int)
|
||||
@Ann('a' - 'a') class MyClass
|
||||
|
||||
fun box(): String {
|
||||
val annotation = javaClass<MyClass>().getAnnotation(javaClass<Ann>())!!
|
||||
val annotation = MyClass::class.java.getAnnotation(Ann::class.java)!!
|
||||
if (annotation.c1 != 0) return "fail : expected = ${1}, actual = ${annotation.c1}"
|
||||
return "OK"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user