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