modula2: Simplify REAL/LONGREAL/SHORTREAL node creation.
[official-gcc.git] / gcc / testsuite / gfortran.dg / stop_3.f90
blobbc153dd3455485046fc88a10565c64a4bdaed6d4
1 ! { dg-do compile }
2 ! { dg-options "-std=f2003" }
3 ! F95 and F2003 do not require a blank after STOP
5 implicit none
6 integer, parameter :: p = 99
7 character(*), parameter :: s = "stopp"
8 stop1
9 stop2!
10 stop3;stop4!
11 stopp
12 stop&!
13 &;stop;&!
14 stop&!
16 ;stop"x";&!
17 ;st&!
18 &op&!
20 stops
21 stop"last " // s
22 end