15 lines
208 B
Plaintext
15 lines
208 B
Plaintext
// #failed: parse
|
|
// #error: unclosed open brace '{'
|
|
main :: proc(): int {
|
|
{;
|
|
}
|
|
|
|
// #error: statement lacks a semicolon
|
|
A :: proc() {
|
|
asd
|
|
}
|
|
|
|
// #error: statement lacks a semicolon
|
|
B :: proc() {
|
|
asd
|
|
} |