2015-05-18 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / lto / pr41576_1.f90
blob118d9c68e95dd886e2db8baf51e63d859e5521a3
1 program test
2 common /bar/ c, d
3 integer(4) :: c, d
4 interface
5 subroutine foo()
6 end subroutine
7 end interface
8 call foo
9 if (c/=1 .or. d/=2) call abort
10 end program test