aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/libgomp/testsuite/libgomp.fortran/tabs1.f90
blob: 4f3d4f5b435d5daa1749fadb6e04007f7b8af32e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
	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