Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
array22.C
blob: e101587738b3fe32d938687c93cf109b148793a1 [
file
] [
log
] [
blame
]
// PR c++/48029
template
<
class
T
>
struct
A
{
};
template
<
class
T
,
class
U
>
struct
B
{
struct
N
{
};
typedef
U u
;
};
typedef
B
<
int
,
A
<int>
(*)[
2
]>
btype
;
A
<int>
v1
[
2
];
btype v2
;