Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: raullaasner at gmail dot com
Target Milestone: ---
I am trying to compile a preprocessed Fortran source file that contains a
syntax error:
$ cat main.f90
implicit none
a = 5
end program
$ gfortran
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81826
Raul Laasner changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
Assignee: unassigned at gcc dot gnu.org
Reporter: raullaasner at gmail dot com
Target Milestone: ---
With OpenCoarrays (1.0.0) and MPICH (3.1.3) I get
[raul@x220 tests]$ cat Critical.f90
module m
contains
subroutine f()
critical
end critical
end