repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
extern_template-7.C
blob
0a0431f604a8962c7985f33e88afe1b24cbdc127
1
#pragma GCC diagnostic push
2
#pragma GCC diagnostic ignored "-Wc++11-extensions"
3
4
template <class T> struct A
5
{
6
void f() { }
7
};
8
9
extern template class A<int>;
10
extern template void A<char>::f();