Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/deprecated.kt
T
2019-10-24 21:33:01 +09:00

18 lines
374 B
Kotlin
Vendored

package deprecated
@Deprecated("Deprecated annotation")
annotation class Anno
@Deprecated("Deprecated class")
@Anno
class Foo {
@Deprecated("Deprecated function")
fun foo(a: Int) {}
@Deprecated("Deprecated property")
val prop = 0
var foo: Int
@Deprecated("Deprecated getter") get() = 0
@Deprecated("Deprecated setter") set(value) {}
}