Files
kotlin-fork/idea/testData/intentions/convertFunctionToProperty/comments.kt
T

8 lines
111 B
Kotlin
Vendored

annotation class X(val s: String)
// 1
@X("") // 2
/* 3 */ fun foo<caret>(): String {
// 4
return ""
}