1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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++; }