Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
other
/
pr80423.C
blob: a855114fa6db344e3a68e1ec980fd1b803f0a6a2 [
file
] [
log
] [
blame
]
// PR middle-end/80423
// { dg-do compile { target c++11 } }
typedef
unsigned
char
uint8_t
;
struct
A
{
template
<
int
N
>
A
(
unsigned
char
(&)[
N
]);
};
void
fn1
(
A
)
{
uint8_t
a
[]{
0
};
fn1
(
a
);
}