mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
11 lines
141 B
Kotlin
Vendored
11 lines
141 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
package test
|
|
|
|
annotation class Anno
|
|
|
|
class Class {
|
|
interface Trait {
|
|
@[Anno] val property: Int
|
|
}
|
|
}
|