Files
kotlin-fork/idea/testData/intentions/convertFunctionToProperty/comments.kt
T
2019-02-28 15:59:50 +03:00

8 lines
111 B
Kotlin
Vendored

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