repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
parse
/
dtor4.C
blob
729ee2fa130dd2282b7529468abf8efede5f4513
1
// { dg-do compile }
2
// Contributed by Paul Koning <pkoning at equallogic dot com>
3
// PR c++/15947: Accept destructor as template in qualified-id
4
5
template <int N> struct X {
6
~X();
7
};
8
9
template <int N>
10
X<N>::~X<N>(){}