Synopsis - Cross-Reference

File: /tests/Cxx/ConstEvaluator/input/variables.cc
 1const int a = 1 + 2 - 3;
 2const int b = 1 << 4;
 3const int c = 8 | 4, d = 22;
 4int e;
 5int f = e;
 6const int g = 1 > 2 ? 1 : 2;
 7const int h = (24 >> 3);
 8const int i = (-1);
 9const int j = ~0;
10const bool k = true;
11const bool l = false;
12const unsigned int m = sizeof(int);
13const unsigned int n = sizeof(char[8])/sizeof(char);
14const unsigned int o = int(2 * sizeof(bool));