mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
13 lines
135 B
Kotlin
Vendored
13 lines
135 B
Kotlin
Vendored
fun unreachable() {}
|
|
|
|
fun a() {
|
|
do {
|
|
} while (true)
|
|
unreachable()
|
|
}
|
|
|
|
fun b() {
|
|
while (true) {
|
|
}
|
|
unreachable()
|
|
} |