e955dcfc14
#KT-30975 Fixed
10 lines
139 B
Plaintext
Vendored
10 lines
139 B
Plaintext
Vendored
fun hasAnnotation() {
|
|
<caret>@Bar val a = create()
|
|
use(a)
|
|
}
|
|
|
|
fun create(): String = ""
|
|
|
|
fun use(s: String) {}
|
|
|
|
annotation class Bar |