mirror of
https://github.com/autc04/Retro68.git
synced 2025-03-04 08:30:13 +00:00
14 lines
234 B
FortranFixed
14 lines
234 B
FortranFixed
|
! { dg-options "-ffixed-form" }
|
||
|
if (b().ne.2) call abort
|
||
|
contains
|
||
|
subroutine a
|
||
|
!$omp parallel
|
||
|
!$omp end parallel
|
||
|
end subroutine a
|
||
|
function b()
|
||
|
integer :: b
|
||
|
b = 1
|
||
|
!$ b = 2
|
||
|
end function b
|
||
|
end
|