From-SVN: r36682
This commit is contained in:
Zack Weinberg 2000-10-01 01:24:02 +00:00
parent 304daac5d9
commit 9256db1dea

View File

@ -0,0 +1,9 @@
C When run through the C preprocessor, the indentation of the
C CONTINUE line must not be mangled.
subroutine aap(a, n)
dimension a(n)
do 10 i = 1, n
a(i) = i
10 continue
print *, a(1)
end