repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
pseudodtor4.C
blob
40178bf489d902d9f16eb733742af4f706341dcc
1
// PR c++/34068
2
// { dg-do compile }
3
4
template <typename> struct A
5
{
6
typedef int X;
7
A () { T (). ~X (); } // { dg-error "there are no arguments to|fpermissive|was not declared in this scope" }
8
};
9
10
A <int> a;