1#version 130
2
3void main()
4{
5  bool defined = false;
6  bool undefined;
7  int fooInt;
8  int definedInt = 2;
9  int undefinedInt;
10
11  fooInt = defined ? definedInt : undefinedInt;
12  fooInt = defined ? undefinedInt : definedInt;
13
14  fooInt = undefined ? definedInt : undefinedInt;
15  fooInt = undefined ? undefinedInt : definedInt;
16}
17
18