bb4bb58453
This flag is going to be removed because old backend is not supported anymore, therefore there's no need to test it.
12 lines
194 B
Kotlin
Vendored
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
|
|
}
|