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
/
array23.C
blob
6ede8b0777351e3da0223a97f1d98d7434fe157c
1
// PR c++/53989
2
3
struct Foo {
4
int value;
5
typedef Foo Foo2;
6
static Foo2 const foos[2];
7
};
8
9
template <class T> void g (T);
10
void bar() {
11
g(&Foo::foos);
12
}