diff options
Diffstat (limited to 'libgomp/testsuite/libgomp.fortran/tabs2.f')
-rw-r--r-- | libgomp/testsuite/libgomp.fortran/tabs2.f | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libgomp/testsuite/libgomp.fortran/tabs2.f b/libgomp/testsuite/libgomp.fortran/tabs2.f new file mode 100644 index 000000000..7aed5498d --- /dev/null +++ b/libgomp/testsuite/libgomp.fortran/tabs2.f @@ -0,0 +1,13 @@ +! { 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 |