aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/compile/stoppause.f90
blob: 9a936f09c3d4ae267654647ed28eae45ab0f1fbd (plain)
1
2
3
4
5
6
7
8
9
10
! Program to check the STOP and PAUSE intrinsics
program stoppause

  pause
  pause 1
  pause 'Hello world'
  stop
  stop 42
  stop 'Go away'
end program