Files
kotlin-fork/idea/testData/quickfix/migration/conflictingExtension/markHiddenAndDeprecated.kt.after
T
2015-10-13 01:45:02 +03:00

6 lines
257 B
Plaintext
Vendored

// "Mark as @Deprecated(..., level = DeprecationLevel.HIDDEN)" "true"
import java.io.File
@Deprecated("Is replaced with automatic synthetic extension", ReplaceWith("name"), level = DeprecationLevel.HIDDEN)
val File.<caret>name: String
get() = getName()