9 lines
110 B
Kotlin
Vendored
9 lines
110 B
Kotlin
Vendored
@RequiresOptIn(message = " ")
|
|
annotation class EmptyMarker
|
|
|
|
@EmptyMarker
|
|
fun foo() {}
|
|
|
|
fun bar() {
|
|
foo()
|
|
} |