Files
kotlin-fork/compiler/testData/cli/jvm/optInEmptyMessage.kt
T
2022-03-10 09:09:50 +00:00

9 lines
110 B
Kotlin
Vendored

@RequiresOptIn(message = " ")
annotation class EmptyMarker
@EmptyMarker
fun foo() {}
fun bar() {
foo()
}