blob: 28a2aeafca45fe7df693b9de027e77af52d7a769 [file] [log] [blame]
/* 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:
i++;
my_label: /* { dg-error "duplicate label" "label lineno" } */
i++;
}