Files
kotlin/idea/testData/quickfix/replaceWithSafeCall/assignmentToProperty.kt.after
2017-06-28 15:28:35 +03:00

5 lines
117 B
Plaintext
Vendored

// "Replace with safe (?.) call" "true"
// WITH_RUNTIME
class T(s: String?) {
var i: Int = s?.length ?: <caret>
}