Files
kotlin-fork/idea/testData/quickfix/suppress/declarationKinds/secondaryConstructor.kt
T
Kirill Rakhman e6d76a9b71 Allow suppressing warnings for secondary constructor (KT-12627)
(cherry picked from commit 41cf868)

 #KT-12627 Fixed
2016-08-16 13:04:42 +03:00

5 lines
121 B
Kotlin
Vendored

// "Suppress 'REDUNDANT_NULLABLE' for secondary constructor of C" "true"
class C {
constructor(s: String?<caret>?)
}