Files
kotlin-fork/idea/testData/quickfix/migration/conflictingExtension/varInsteadOfVal.kt
T
2016-11-15 09:30:13 +03:00

9 lines
208 B
Kotlin
Vendored

// "Delete redundant extension property" "false"
// ACTION: Create test
// ACTION: Remove explicit type specification
import java.io.File
var File.<caret>name: String
get() = getName()
set(value) {}