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

13 lines
238 B
Kotlin
Vendored

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