20010115.f: New test.

2001-01-15  Toon Moene  <toon@moene.indiv.nluug.nl>

	* g77.f-torture/compile/20010115.f: New test.

From-SVN: r39041
This commit is contained in:
Toon Moene 2001-01-15 17:48:35 +01:00 committed by Toon Moene
parent 11b810f116
commit 9f1630a988
2 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2001-01-15 Toon Moene <toon@moene.indiv.nluug.nl>
* g77.f-torture/compile/20010115.f: New test.
2001-01-15 Nathan Sidwell <nathan@codesourcery.com>
* g++.old-deja/g++.pt/nontype5.C: New test.

View file

@ -0,0 +1,8 @@
PRINT 42, 'HELLO'
42 FORMAT(A)
CALL WORLD
END
SUBROUTINE WORLD
PRINT 42, 'WORLD'
42 FORMAT(A)
END