9dda5e4fcd
KT-56177
12 lines
167 B
Kotlin
Vendored
12 lines
167 B
Kotlin
Vendored
// ALLOW_KOTLIN_PACKAGE
|
|
|
|
package kotlin
|
|
|
|
@Deprecated("foo test")
|
|
@DeprecatedSinceKotlin(warningSince = "1.0")
|
|
fun foo() {}
|
|
|
|
fun test() {
|
|
<!DEPRECATION!>foo<!>()
|
|
}
|