OSDN Git Service

2010-04-22 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / assign_5.f90
1 ! { dg-do run }
2 ! Assign a label to a dummy argument.
3 ! Option passed to avoid excess errors from obsolete warning
4 ! { dg-options "-w" }
5
6 subroutine s1 (a)
7 integer a
8 assign 777 to a
9 go to a
10 777 continue
11 end
12 program test
13 call s1 (1)
14 end
15