OSDN Git Service

* c-typeck.c (output_init_element): Call digest_init
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / noncompile / label-lineno-1.c
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 int
5 foo(int i)
6 {
7  my_label:
8
9   i++;
10
11  my_label: /* { dg-error "duplicate label" "label lineno" } */
12
13   i++;
14 }