OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [template/] [memclass4.C] - Rev 328

Go to most recent revision | Compare with Previous | Blame | View Log

// Origin: PR c++/42824
// { dg-do compile }

template<int T>
class int_ {
};

template<int T, int T2>
class Unit {
public:
    Unit(const Unit<T, T2>& other) {}
};

template<int T>
class Quan {
public:
    Quan(void) {}

    template<int T2>
    Quan(double value, Unit<T, T2> unit) {}
};
typedef Quan<0> Scalar;

template<int T>
class hlp {
public:
   typedef Quan<T> type;
};

class Mtrl {
public:
    template<int T>
    struct AssoType {
        typedef typename hlp<T>::type type;
    };
};

template<class T>
class Eval {
public:
    Eval(const T& object){}

    template<int V>
    void eval() {
        eval<V> (int_<0>());
    }
private:
    template<typename U> struct Wrap {};

    template<int V, int V2>
    void value(Wrap<Quan<V2> >) {}

    template<int V>
    void value(Wrap<Scalar>) {}

    template<int V>
    void eval(int_<0>) {
        typedef typename T::template AssoType<V>::type Type;
        value<V>(Wrap<Type>());
    }
};

class Foo {
public:
    static void eval(const Mtrl& mtrl) {
        Eval<Mtrl> h(mtrl);
        h.eval<0> ();
    }
};

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.