de3f31cf78
No support for inheritance deprecations and deprecations in qualifier's parts
10 lines
142 B
Kotlin
Vendored
10 lines
142 B
Kotlin
Vendored
package kotlin
|
|
|
|
@Deprecated("foo test")
|
|
@DeprecatedSinceKotlin(warningSince = "1.0")
|
|
fun foo() {}
|
|
|
|
fun test() {
|
|
<!DEPRECATION!>foo<!>()
|
|
}
|