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
/
explicit-instantiation.C
blob
67e44c49f024c840034b23eb9698ff07853b61b3
1
// Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
2
// Origin: Jens.Maurer@gmx.net
3
// { dg-do compile }
4
5
// Fixed: PR 3381
6
7
namespace N
8
{
9
template<class T>
10
class A { };
11
}
12
13
template class ::N::A<int>;
14
15
16