Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/classUsages/noAnnotationConstructorUsage.kt
T

9 lines
143 B
Kotlin
Vendored

// "class org.jetbrains.kotlin.idea.quickfix.DeprecatedSymbolUsageFix" "false"
@deprecated("")
class C(p: Int)
fun foo() {
<caret>C(1)
}