FIR: support WRONG_ANNOTATION_TARGET on expressions
This commit is contained in:
+3
-3
@@ -4,10 +4,10 @@ annotation class base
|
||||
@Retention(AnnotationRetention.SOURCE)
|
||||
annotation class special
|
||||
|
||||
fun transform(i: Int, tr: (Int) -> Int): Int = @base @special tr(@special i)
|
||||
fun transform(i: Int, tr: (Int) -> Int): Int = <!WRONG_ANNOTATION_TARGET!>@base<!> @special tr(@special i)
|
||||
|
||||
@base @special fun foo(i: Int): Int {
|
||||
val j = @base @special i + 1
|
||||
if (j == 1) return foo(@special @base 42)
|
||||
val j = <!WRONG_ANNOTATION_TARGET!>@base<!> @special i + 1
|
||||
if (j == 1) return foo(@special <!WRONG_ANNOTATION_TARGET!>@base<!> 42)
|
||||
return transform(@special j, @base @special { @special it * 2 })
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user