PR c++/86342 - -Wdeprecated-copy and system headers.
[official-gcc.git] / libgomp / testsuite / libgomp.fortran / pr28390.f
bloba667e08f73ee97a1e6b5769098b222c95f568f8e
1 ! PR fortran/28390
2 program pr28390
3 integer i
4 !$omp parallel do lastprivate(i)
5 do i=1,100
6 end do
7 if (i.ne.101) STOP 1
8 end