Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/experimental/experimentalOnOverrideWarning.kt
T
2021-09-10 16:29:13 +03:00

13 lines
288 B
Kotlin
Vendored

// !USE_EXPERIMENTAL: kotlin.RequiresOptIn
// !LANGUAGE: -OptInOnOverrideForbidden
@RequiresOptIn(level = RequiresOptIn.Level.WARNING)
@Retention(AnnotationRetention.BINARY)
annotation class E
class My {
<!OPT_IN_MARKER_ON_OVERRIDE_WARNING!>@E<!>
override fun hashCode() = 0
}