Files
kotlin-fork/idea/testData/quickfix/convertPropertyInitializerToGetter/val.kt
T

7 lines
167 B
Kotlin
Vendored

// "Convert property initializer to getter" "true"
fun String.foo() = "bar"
interface A {
val name = <caret>"The quick brown fox jumps over the lazy dog".foo()
}