[LL FIR] add more lazy resolve tests on compiler required annotations

^KT-56551
This commit is contained in:
Dmitrii Gridin
2023-05-17 17:06:30 +02:00
committed by Space Team
parent 8d151df252
commit 4b1dc4eee6
13 changed files with 1669 additions and 0 deletions
@@ -0,0 +1,6 @@
annotation class Anno(val s: String)
@Deprecated("function") @Anno("function")
fun f<caret>ooo(@Deprecated("a") @Anno("a") a: Int) {
}