Files
Alexander Udalov bb4bb58453 Remove tests on -Xuse-ir compiler flag
This flag is going to be removed because old backend is not supported
anymore, therefore there's no need to test it.
2023-05-30 14:46:09 +00:00

12 lines
194 B
Kotlin
Vendored

package b
import a.*
@Anno(E.ENTRY)
@Anno2(arrayOf(E.ENTRY))
open class B {
@Anno(E.ENTRY)
@Anno2(arrayOf(E.ENTRY))
fun <@Anno(E.ENTRY) @Anno2(arrayOf(E.ENTRY)) T> foo(t: T) = t
}