blob: ef75832f17033880a315b19bc625c4b9c27dd764 [file] [log] [blame]
// "Convert property initializer to getter" "true"
// WITH_RUNTIME
fun String.foo() = "bar"
interface A {
var name = <caret>"The quick brown fox jumps over the lazy dog".foo()
}