12 lines
381 B
Kotlin
Vendored
12 lines
381 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 val a
|
|
// ACTION: Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for file objectLiteralInsideExpression.kt
|
|
|
|
fun foo() {
|
|
val a = object : Base(""<caret>!!) {
|
|
|
|
}
|
|
}
|
|
|
|
open class Base(s: Any) |