aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/dtor7.C
blob: 0dac69e8948c31717f4cf5fbf9b3611397c333a1 (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
// PR c++/40373
// { dg-compile }

struct A;	// { dg-bogus "candidates are" "" { xfail *-*-* } }
namespace
{
  struct A;	// { dg-bogus "struct" "" { xfail *-*-* } }
}

struct B {};

template <typename T> void
foo (T t)
{
  t.~A ();	// { dg-error "does not match destructor name" }
}

void
bar ()
{
  foo (B ());	// { dg-bogus "instantiated from here" "" { xfail *-*-* } }
}

// { dg-bogus "is ambiguous" "" { xfail *-*-* } 15 }