1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
#include "helper_decls_test.h"
namespace {
class HelperC1 {
public:
static int I;
};
int HelperC1::I = 0;
class HelperC2 {};
class HelperC3 {
public:
static int I;
};
int HelperC3::I = 0;
void HelperFun1() {}
void HelperFun2() { HelperFun1(); }
const int K1 = 1;
} // namespace
static const int K2 = 2;
static void HelperFun3() { K2; }
namespace a {
static const int K3 = 3;
static const int K4 = HelperC3::I;
static const int K5 = 5;
static const int K6 = 6;
static void HelperFun4() {}
static void HelperFun6() {}
void Class1::f() { HelperFun2(); }
void Class2::f() {
HelperFun1();
HelperFun3();
}
void Class3::f() { HelperC1::I; }
void Class4::f() { HelperC2 c2; }
void Class5::f() {
int Result = K1 + K2 + K3;
HelperFun4();
}
int Class6::f() {
int R = K4;
return R;
}
int Class7::f() {
int R = K6;
return R;
}
int Class7::g() {
HelperFun6();
return 1;
}
static int HelperFun5() {
int R = K5;
return R;
}
void Fun1() { HelperFun5(); }
} // namespace a
namespace b {
namespace {
void HelperFun7();
class HelperC4;
} // namespace
void Fun3() {
HelperFun7();
HelperC4 *t;
}
namespace {
void HelperFun7() {}
class HelperC4 {};
} // namespace
} // namespace b
|