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
Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
dtor15.C
blob
ae85a702a408a288ee99f57fbce7787e9defe233
1
// PR c++/39225
2
3
template <class T>
4
class A
5
{
6
public:
7
A() {}
8
~B() {} // { dg-error "~B" }
9
};
10
11
int main()
12
{
13
A<int> *a = new A<int>;
14
15
return 0;
16
}