29 lines
551 B
Plaintext
Vendored
29 lines
551 B
Plaintext
Vendored
fun test1() {
|
|
error("") /* ErrorExpression */
|
|
error("") /* ErrorExpression */
|
|
}
|
|
|
|
fun test2() {
|
|
L1@ while (true) { // BLOCK
|
|
error("") /* ErrorExpression */
|
|
error("") /* ErrorExpression */
|
|
}
|
|
}
|
|
|
|
fun test3() {
|
|
L1@ while (true) { // BLOCK
|
|
val lambda: Function0<Nothing> = local fun <anonymous>(): Nothing {
|
|
error("") /* ErrorExpression */
|
|
return error("") /* ErrorExpression */
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
fun test4() {
|
|
while (error("") /* ErrorExpression */) { // BLOCK
|
|
}
|
|
while (error("") /* ErrorExpression */) { // BLOCK
|
|
}
|
|
}
|