8 lines
167 B
Plaintext
8 lines
167 B
Plaintext
// RUN: not %{ispc} --target=host --nowrap --nostdlib %s -o - 2>&1 | FileCheck %s
|
|
|
|
// CHECK: Error: "break" statement is illegal outside of
|
|
|
|
void foo() {
|
|
break;
|
|
}
|