[FIR] builder: more tests for annotations

^KT-63042
This commit is contained in:
Dmitrii Gridin
2023-11-22 17:46:01 +01:00
committed by Space Team
parent 11749d7c89
commit 1d5ab8c24f
71 changed files with 1930 additions and 13 deletions
@@ -0,0 +1,17 @@
package util
class A {
init {
class OuterIntoLocal {
fun doo() = foo()
fun foo() = bar()
fun baz() = foo()
}
class LocalIntoLocal {
fun foo() = bar()
fun bar(): @Anno("bar $prop") List<@Anno("nested bar $prop") Collection<@Anno("nested nested bar $prop") Int>>? = null
fun foo2() = bar()
}
}
}