mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
13 lines
165 B
Fortran
13 lines
165 B
Fortran
|
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
|