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
Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git]
/
main
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
defaulted30.C
blob
ce86f575777232b538f2815be6fbf29023d84d5f
1
// PR c++/49507
2
// { dg-do compile { target c++11 } }
3
4
template<typename T>
5
struct ConcretePoolKey
6
{
7
virtual ~ConcretePoolKey();
8
};
9
10
template<typename T>
11
ConcretePoolKey<T>::~ConcretePoolKey() = default;
12
13
int main()
14
{
15
ConcretePoolKey<int> foo;
16
}