mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
15 lines
343 B
Kotlin
Vendored
15 lines
343 B
Kotlin
Vendored
fun testPrefix() {
|
|
operator fun Any.not() {}
|
|
<!UNREACHABLE_CODE!>!<!>todo()
|
|
}
|
|
|
|
fun testPostfixWithCall(n: Nothing) {
|
|
operator fun Nothing.inc(): Nothing = this
|
|
n<!UNREACHABLE_CODE!>++<!>
|
|
}
|
|
|
|
fun testPostfixSpecial() {
|
|
todo()<!UNNECESSARY_NOT_NULL_ASSERTION, UNREACHABLE_CODE!>!!<!>
|
|
}
|
|
|
|
fun todo(): Nothing = throw Exception() |