repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
pr80423.C
blob
a855114fa6db344e3a68e1ec980fd1b803f0a6a2
1
// PR middle-end/80423
2
// { dg-do compile { target c++11 } }
3
4
typedef unsigned char uint8_t;
5
struct A {
6
template <int N> A(unsigned char (&)[N]);
7
};
8
void fn1(A) {
9
uint8_t a[]{0};
10
fn1(a);
11
}