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
/
crash4.C
blob
72b2bb18b9f0f217a685d691e1be4172a24be200
1
namespace NS {
2
struct C {};
3
void foo();
4
}
5
6
template <class T> struct X {};
7
8
template <class T> struct A {
9
A() { foo (X<T>()); }
10
void foo(X<T>);
11
};
12
template struct A<NS::C>;