rt_gccstream/gcc/testsuite/gcc.dg/noncompile/label-lineno-1.c

15 lines
303 B
C

/* Ensure that diagnostics for labels appear on the correct lineno.
by Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 8/23/2000. */
void
foo(int i)
{
my_label: /* { dg-message "note: previous definition" "prev label" } */
i++;
my_label: /* { dg-error "duplicate label" "label lineno" } */
i++;
}