1c4fb9b00b
Relates to #KT-30975
12 lines
182 B
Kotlin
Vendored
12 lines
182 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun hasAnnotation() {
|
|
when<caret> (@Bar val a = create()) {
|
|
else -> use(a)
|
|
}
|
|
}
|
|
|
|
fun create(): String = ""
|
|
|
|
fun use(s: String) {}
|
|
|
|
annotation class Bar |