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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [pseudodtor1.C] - Rev 715

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

// PR c++/32384
// { dg-do compile }

struct A
{
  typedef int T;
  T foo ();

  A () { foo ().~T (); }
};

template<typename> struct B
{
  typedef int T;
  T foo ();

  B () { foo ().~T (); }
};

template<typename T> struct C
{
  T t;
  C () { t.~T (); }
};

template<typename S> struct D
{
  typedef int T;
  S foo ();

  D () { foo ().~T(); }
};

struct Z
{
  Z () {}
  ~Z () {}
};

A a;
B<int> b;
C<int> c1;
C<Z> c2;
D<int> d;

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.