Files
kotlin-fork/idea/testData/quickfix/suppress/forStatement/unavailable/objectLiteral.kt
T
2015-12-19 14:32:37 +03:00

11 lines
294 B
Kotlin
Vendored

// "class com.intellij.codeInspection.SuppressIntentionAction" "false"
// ACTION: Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for fun foo
// ACTION: Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for file objectLiteral.kt
fun foo() {
object : Base(""<caret>!!) {
}
}
open class Base(s: Any)