Bogus errors using -U option?
http://snowy.arsc.alaska.edu/cstephen/bug.tar.gz
When using the -U compiler option, the linked code produces the following errors. Is this a bug?
% make
f95 -c -u -U mod_kinds.f90
f95 -c -u -U mod_param.f90
f95 -c -u -U foo.f90
MODULE mod_grid
^
"foo.f90", Line = 1, Column = 14: ERROR: The compiler has detected errors in module "mod_grid". No module information file will be created for this module.
SUBROUTINE initialize_grid (ng, tile)
^
"foo.f90", Line = 4, Column = 39: ERROR: IMPLICIT NONE is specified in the host scope, therefore an explicit type must be specified for data object "tile".
integer, intent(in) :: ng, tile
^
"foo.f90", Line = 14, Column = 34: ERROR: "tile" has the INTENT attribute, therefore it must be a dummy argument.
f90comp: 20 SOURCE LINES
f90comp: 3 ERRORS, 0 WARNINGS, 0 OTHER MESSAGES, 0 ANSI
make: *** [all] Error 1
Any help is appreciated. Thanks!

