9 lines
146 B
Kotlin
Vendored
9 lines
146 B
Kotlin
Vendored
// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
|
|
|
|
fun foo(a: C) {
|
|
a.foo(""<caret>!!)
|
|
}
|
|
|
|
class C {
|
|
fun foo(a: Any) {}
|
|
} |