aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ipa/pr43812.C
blob: cc46eed6501dc6f09f20680f62a01725fbe9d106 (plain)
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
/* { dg-do compile } */
/* { dg-options "-O -fwhole-program -fipa-cp" } */

typedef float scoord_t;
typedef scoord_t sdist_t;
typedef sdist_t dist_t;
template<typename T> class TRay { };
typedef TRay<dist_t> Ray;
class BBox { };
class RenderContext { };
class RefCounted {
public:
    void deref () const {
        if (--ref_count <= 0) {
            delete this;
        }
    }
    mutable int ref_count;
};
template<class T> class Ref {
public:
    ~Ref () {
        if (obj) obj->deref ();
    }
    T *obj;
};
class Material : public RefCounted { };
class Surface {
public:
    virtual ~Surface () { }
    class IsecInfo   { };
    virtual const IsecInfo *intersect (Ray &ray, RenderContext &context) const;
    Ref<const Material> material;
};
class LocalSurface : public Surface {
    virtual BBox bbox () const;
};
BBox LocalSurface::bbox () const { }