Merge pull request #2892 from greg-lunarg/mb
[platform/upstream/glslang.git] / Test / hlsl.pp.vert
1 #define A defined(B)
2
3 #if A
4 int badGlobal1;
5 #else
6 int goodGlobal1;
7 #endif
8
9 #define B
10
11 #if A
12 int goodGlobal2;
13 #else
14 int badGlobal2;
15 #endif
16
17 void main() {}