Files
kotlin-fork/idea/testData/refactoring/extractFunction/parameters/misc/qualifiedAnnotation.kt
T
2015-06-12 09:23:31 +03:00

9 lines
144 B
Kotlin
Vendored

// SIBLING:
class MyClass {
fun test() {
<selection>@[P] val t: Int = 1
t</selection>
}
public annotation class P
}