Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/classUsages/noAnnotationConstructorUsage.kt
T
2015-09-04 18:19:31 +03:00

9 lines
155 B
Kotlin
Vendored

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