Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
array23.C
blob: 6ede8b0777351e3da0223a97f1d98d7434fe157c [
file
] [
log
] [
blame
]
// PR c++/53989
struct
Foo
{
int
value
;
typedef
Foo
Foo2
;
static
Foo2
const
foos
[
2
];
};
template
<
class
T
>
void
g
(
T
);
void
bar
()
{
g
(&
Foo
::
foos
);
}