1 /* Ensure that diagnostics for labels appear on the correct lineno. 2 by Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 8/23/2000. */ 3 4 void foo(int i)5foo(int i) 6 { 7 my_label: /* { dg-message "note: previous definition" "prev label" } */ 8 9 i++; 10 11 my_label: /* { dg-error "duplicate label" "label lineno" } */ 12 13 i++; 14 } 15