[FE 1.0] Fix remaining codegen spec tests

This commit is contained in:
Dmitriy Novozhilov
2021-07-27 10:10:03 +03:00
committed by Mikhael Bogdanov
parent ee68962c02
commit 262c9e88d1
5 changed files with 9 additions and 5 deletions
@@ -18,6 +18,7 @@ internal open class A: `true`() {
val x2 = false
}
@Target(AnnotationTarget.CLASS, AnnotationTarget.TYPE)
annotation class `false`(val x2: Boolean)
@`false`(false) internal class B: @`false`(false) A() {}
@@ -40,4 +41,4 @@ fun box(): String? {
if (!checkClassName(`true`::class, "true")) return null
return "OK"
}
}