Files
kotlin/idea/testData/debugger/smartStepInto/annotation.kt
2015-06-12 09:23:31 +03:00

9 lines
105 B
Kotlin
Vendored

fun foo() {
@Ann() @Ann val a = bar()<caret>
}
annotation class Ann
fun bar() = 1
// EXISTS: bar()