[FIR] builder: more tests for annotations
^KT-63042
This commit is contained in:
committed by
Space Team
parent
11749d7c89
commit
1d5ab8c24f
+17
@@ -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()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user