Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/classUsages/noAnnotationConstructorUsage.kt
T
Valentin Kipyatkov 8dbe87a918 Moved classes
2015-09-03 15:55:58 +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)
}