Files
kotlin-fork/idea/testData/quickfix/migration/conflictingExtension/markHiddenAndDeprecated.kt.after.as36
T
2020-05-08 19:13:28 +07:00

10 lines
271 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()