Files
kotlin-fork/idea/testData/quickfix/properties/extensionPropertyInitializerToGetter/dontShowQuickfixOnExistingAccessors.kt
T
Anton Sukhonosenko c442eb89e3 #KT-5115 Fixed
2015-11-09 22:25:14 +03:00

5 lines
190 B
Kotlin
Vendored

// "Convert extension property initializer to getter" "false"
// ERROR: Extension property cannot be initialized because it has no backing field
var String.foo: Int = 0<caret>
get() = 1