mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
13 lines
381 B
Kotlin
Vendored
13 lines
381 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun testCompound() {
|
|
operator fun Nothing.get(i: Int) {}
|
|
todo()<!UNREACHABLE_CODE!><!UNNECESSARY_NOT_NULL_ASSERTION!>!!<!>[12]<!>
|
|
}
|
|
|
|
fun testCompound1() {
|
|
operator fun Int.times(s: String): Array<String> = throw Exception()
|
|
<!UNREACHABLE_CODE!>(<!>todo() <!UNREACHABLE_CODE!>* "")[1]<!>
|
|
}
|
|
|
|
fun todo(): Nothing = throw Exception() |