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
/
crash3.C
blob
21aa57b1e94551d7f0485f07d22ff9ddad9649bd
1
struct S {
2
};
3
4
extern S i[];
5
6
void g (S*);
7
8
template <typename T>
9
void f () {
10
g (&i[2]);
11
}
12