569a5888ff
Also #KT-3883 Fixed Also #KT-4986 Fixed
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()
|
|
} |