blob: 8274117b3b0b654c1d0ddea4838cc080cb4b6d76 [file] [log] [blame]
/* Ensure that diagnostics for labels appear on the correct lineno.
by Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 8/23/2000. */
int
foo(int i)
{
my_label:
i++;
my_label: /* { dg-error "duplicate label" "label lineno" } */
i++;
}