aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler/glsl/glcpp/tests/100-macro-with-colon.c
blob: 31dbb9a9edcc797c11872f2c039d1129dbd51e6b (plain)
1
2
3
4
5
6
7
#define one 1
#define two 2

switch (1) {
   case one + two:
      break;
}