8 lines
169 B
Kotlin
Vendored
8 lines
169 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
@Suppress("warnings")
|
|
class C {
|
|
fun foo(p: String??) {
|
|
// Make sure errors are not suppressed:
|
|
<!VAL_REASSIGNMENT!>p<!> = ""
|
|
}
|
|
} |