mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
Blacklist some common-used Java and Kotlin annotations instead (like Deprecated, Nullable or Metadata).
(cherry picked from commit 6856a7c)
10 lines
173 B
Kotlin
Vendored
10 lines
173 B
Kotlin
Vendored
annotation class Anno
|
|
|
|
@Anno
|
|
class MyClass {
|
|
var myProperty: String = "A"
|
|
|
|
fun myFunction() = object : java.lang.Runnable {
|
|
override fun run() {}
|
|
}
|
|
} |