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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [implicit7.C] - Rev 693

Compare with Previous | Blame | View Log

// PR c++/44909
// { dg-options -std=c++0x }
// Declaring A<D<E>>'s copy ctor means choosing a ctor to initialize D<E>,
// which means choosing a ctor for C<B<E>>, which meant considering
// C(const B<E>&) which means choosing a ctor for B<E>, which means choosing
// a ctor for A<D<E>>.  Cycle.

template<typename T>
struct A
{
  T t;
};

template <typename T>
struct B
{
  typename T::U u;
};

template <typename T>
struct C
{
  C(const T&);
};

template <typename T>
struct D
{
  C<B<T> > v;
};

struct E {
  typedef A<D<E> > U;
};

extern A<D<E> > a;
A<D<E> > a2(a);

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.