1 /* Spurious uninit variable warnings, case 3.
2 Inspired by cppexp.c (parse_charconst) */
3 /* { dg-do compile } */
4 /* { dg-options "-Wuninitialized" } */
6 extern void error (char *);
9 parse_charconst (const char *start
, const char *end
)
11 int c
; /* { dg-bogus "c" "uninitialized variable warning" } */
30 error ("malformed character constant");