* MAINTAINERS: Add a note that maintainership also includes web
[official-gcc.git] / gcc / testsuite / g++.dg / other / pr80423.C
bloba855114fa6db344e3a68e1ec980fd1b803f0a6a2
1 // PR middle-end/80423
2 // { dg-do compile { target c++11 } }
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 }