re PR c++/67184 (Missed optimization with C++11 final specifier)
[official-gcc.git] / gcc / testsuite / g++.dg / other / pr25632.C
blobe66ae3b51ec39ff291f6ef08774edcdd80cd1026
1 /* PR c++/25632  */
3 /* { dg-do compile } */
5 __extension__ typedef __INTPTR_TYPE__ intptr_t;
7 struct sockaddr_un {
8     char sun_path[1];
9 };
10 const unsigned SI_SUN_HEAD_LEN = (intptr_t)(((struct sockaddr_un *)0)->sun_path);
11 int SiGetPeerName ()
13     return SI_SUN_HEAD_LEN;
15 int SiAccept ()
17     return SI_SUN_HEAD_LEN;