1c4fb9b00b
Relates to #KT-30975
13 lines
172 B
Plaintext
Vendored
13 lines
172 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun hasAnnotation() {
|
|
run {
|
|
@Bar val a = create()
|
|
use(a)
|
|
}
|
|
}
|
|
|
|
fun create(): String = ""
|
|
|
|
fun use(s: String) {}
|
|
|
|
annotation class Bar |