Retro68/gcc/libgomp/testsuite/libgomp.fortran/tabs2.f
2018-12-28 16:30:48 +01:00

14 lines
230 B
Fortran

! { dg-options "-ffixed-form" }
if (b().ne.2) STOP 1
contains
subroutine a
!$omp parallel
!$omp end parallel
end subroutine a
function b()
integer :: b
b = 1
!$ b = 2
end function b
end