24 lines
197 B
Kotlin
Vendored
24 lines
197 B
Kotlin
Vendored
// FILE: api.kt
|
|
|
|
@RequiresOptIn
|
|
annotation class Marker
|
|
|
|
@Marker
|
|
fun f() {}
|
|
|
|
// FILE: usage.kt
|
|
|
|
fun use1() {
|
|
f()
|
|
}
|
|
|
|
@Marker
|
|
fun use2() {
|
|
f()
|
|
}
|
|
|
|
@OptIn(Marker::class)
|
|
fun use3() {
|
|
f()
|
|
}
|