summaryrefslogtreecommitdiffstats
path: root/libacc/tests/data/defines.c
blob: 6cb6f7ebf673968e06d24bac46416f995bf54950 (plain)
1
2
3
4
5
6
7
8
9
// Simple tests of the C preprocessor

#define A 1
#define A (4 / 2)
#define B 1 // This is a comment. With a / in it.

int main() {
    return A + B;
}