2002-05-27 23:46:52 +02:00
|
|
|
// 2002-05-13
|
|
|
|
|
2002-12-18 00:24:57 +01:00
|
|
|
enum region { oriental, egyptian, greek, etruscan, roman };
|
2002-05-27 23:46:52 +02:00
|
|
|
|
2002-12-18 00:24:57 +01:00
|
|
|
// Test one.
|
|
|
|
class gnu_obj_1
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
typedef region antiquities;
|
|
|
|
const bool test;
|
|
|
|
const int key1;
|
|
|
|
long key2;
|
2002-05-27 23:46:52 +02:00
|
|
|
|
2002-12-18 00:24:57 +01:00
|
|
|
antiquities value;
|
2002-05-27 23:46:52 +02:00
|
|
|
|
2002-12-18 00:24:57 +01:00
|
|
|
public:
|
|
|
|
gnu_obj_1(antiquities a, long l): test(true), key1(5), key2(l), value(a) {}
|
|
|
|
};
|
2002-05-27 23:46:52 +02:00
|
|
|
|
2002-12-18 00:24:57 +01:00
|
|
|
// Test two.
|
|
|
|
template<typename T>
|
|
|
|
class gnu_obj_2: public virtual gnu_obj_1
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
antiquities value_derived;
|
2002-05-27 23:46:52 +02:00
|
|
|
|
2002-12-18 00:24:57 +01:00
|
|
|
public:
|
|
|
|
gnu_obj_2(antiquities b): gnu_obj_1(oriental, 7), value_derived(b) { }
|
|
|
|
};
|
2002-05-27 23:46:52 +02:00
|
|
|
|
2002-12-18 00:24:57 +01:00
|
|
|
// Test three.
|
|
|
|
template<typename T>
|
|
|
|
class gnu_obj_3
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
typedef region antiquities;
|
|
|
|
gnu_obj_2<int> data;
|
2002-05-27 23:46:52 +02:00
|
|
|
|
2002-12-18 00:24:57 +01:00
|
|
|
public:
|
|
|
|
gnu_obj_3(antiquities b): data(etruscan) { }
|
|
|
|
};
|
2002-12-11 19:45:29 +01:00
|
|
|
|
|
|
|
int shadow = 0;
|
|
|
|
|
|
|
|
class C
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
C (int x) : shadow (x) {}
|
|
|
|
void marker () {}
|
|
|
|
private:
|
|
|
|
int shadow;
|
|
|
|
};
|
2002-05-27 23:46:52 +02:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
gnu_obj_1 test1(egyptian, 4589);
|
|
|
|
gnu_obj_2<long> test2(roman);
|
|
|
|
gnu_obj_3<long> test3(greek);
|
2002-12-11 19:45:29 +01:00
|
|
|
|
|
|
|
C theC (1); // breakpoint: first-constructs-done
|
|
|
|
theC.marker ();
|
|
|
|
|
2009-11-12 20:35:26 +01:00
|
|
|
return shadow;
|
2002-05-27 23:46:52 +02:00
|
|
|
}
|