mirror of
https://github.com/boostorg/spirit.git
synced 2026-01-23 18:12:10 +00:00
18 lines
201 B
Plaintext
18 lines
201 B
Plaintext
/* mini program with syntax error */
|
|
|
|
int foo(n)
|
|
{
|
|
int a = 2;
|
|
if (n @ 3) /* we don't have @ operator in mini_c */
|
|
{
|
|
a = 3
|
|
}
|
|
return a;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
return foo(10);
|
|
}
|
|
|