OSDN Git Service

2009-10-10 Jerry DeLisle <jvdelisle@gcc.gnu.org>
[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