2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / label_4.f90
blob2a32f31a08111c2a828a33a256f77f827e831173
1 ! { dg-do compile }
2 ! { dg-options "-Wunused-label" }
3 ! PR 26277
4 ! We used to give an incorect warning about label 99 not being referenced
5 open(unit=12,err=99)
6 99 print *,"could not open file ..."
7 98 continue ! { dg-warning "Label 98 .* defined but not used" }
8 close(unit=12,status="delete")
9 end