Files
kotlin/compiler/testData/versionRequirement/languageVersionViaAnnotation.kt
Alexander Udalov a96861c353 Support version kind for RequireKotlin
#KT-20584 Fixed
2017-10-10 13:21:49 +02:00

19 lines
598 B
Kotlin
Vendored

@file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
package test
import kotlin.internal.RequireKotlin
@RequireKotlin("1.1", "message", DeprecationLevel.WARNING, errorCode = 42)
class Klass
class Konstructor @RequireKotlin("1.1", "message", DeprecationLevel.WARNING, errorCode = 42) constructor()
@RequireKotlin("1.1", "message", DeprecationLevel.WARNING, errorCode = 42)
typealias Typealias = String
@RequireKotlin("1.1", "message", DeprecationLevel.WARNING, errorCode = 42)
fun function() {}
@RequireKotlin("1.1", "message", DeprecationLevel.WARNING, errorCode = 42)
val property = ""