Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/deprecatedSinceKotlin/deprecatedSinceKotlinWithoutArguments.kt
T

10 lines
165 B
Kotlin
Vendored

// ALLOW_KOTLIN_PACKAGE
package kotlin
@Deprecated("")
@<!DEPRECATED_SINCE_KOTLIN_WITHOUT_ARGUMENTS!>DeprecatedSinceKotlin<!>
fun foo() {}
fun test() {
foo()
}