9 lines
111 B
Kotlin
9 lines
111 B
Kotlin
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
annotation class Anno
|
|
|
|
interface Trait {
|
|
fun foo([Anno] x: String) = 42
|
|
}
|