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

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.pt/] [ttp37.C] - Rev 12

Compare with Previous | Blame | View Log

// { dg-do run  }
template<int T, class U = int> class D
{
        public:
                int f();
};

template<int T, class U> int D<T,U>::f()
{
        return T+sizeof(U);
}

template<template<int> class D,class E> class C
{
                D<1> d;
        public:
                int f() { return d.f(); }
};

template<template<int> class D, int T> int f(D<T> &d1)
{
        d1.f();
        return T;
}

int main()
{
        D<1> c1;
        f(c1);
}

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.