comparison libgomp/testsuite/libgomp.fortran/tabs1.f90 @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children 84e7813d76e9
comparison
equal deleted inserted replaced
-1:000000000000 0:a06113de4d67
1 if (b().ne.2) call abort
2 contains
3 subroutine a
4 !$omp parallel
5 !$omp end parallel
6 end subroutine a
7 function b()
8 integer :: b
9 b = 1
10 !$ b = 2
11 end function b
12 end