modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/nested-2.c (about) 1 /* PR 21105 */ 2 3 void 4 CheckFile () 5 { 6 char tagname[10]; 7 char *a = tagname; 8 9 int validate () 10 { 11 return (a == tagname + 4); 12 } 13 14 if (a == tagname) 15 validate (); 16 }