aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_keywords.sh
blob: 0bdb6f707c3aa9c9a31a6e1582ef549a1916f475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cat <<'EOF' > expected


int printf ();
int main () {}
EOF

test_cpp <<'EOF'
// A keyword is treated as a normal identifier in preprocessing phase.
#define auto int

auto printf();
auto main() {}
EOF