Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/deprecatedSinceKotlin/checkValuesAreParseableAsVersion.fir.kt
T
2020-06-29 14:25:08 +03:00

22 lines
350 B
Kotlin
Vendored

package kotlin
@Deprecated("")
@DeprecatedSinceKotlin("", errorSince = "1.0")
fun test1() {}
@Deprecated("")
@DeprecatedSinceKotlin("")
fun test2() {}
@Deprecated("")
@DeprecatedSinceKotlin("", "", "")
fun test3() {}
@Deprecated("")
@DeprecatedSinceKotlin("1.4-M2")
fun test4() {}
@Deprecated("")
@DeprecatedSinceKotlin("1.3.70")
fun test5() {}