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
/
crash80.C
blob
a12bd8bddaa2e9e3a421175f5d9d05e66fc46e41
1
// PR c++/37087
2
3
namespace a {
4
template <typename T> class Foo;
5
}
6
7
namespace b {
8
template <> class ::a::Foo<double> {}; // { dg-error "global qualification of class name is invalid" }
9
}