3 ! { dg-options "-Wsurprising" }
7 real, dimension(1:3) :: a
, b
, c
10 !$omp parallel do reduction(min: a) reduction(max: b) private (c) ! { dg-bogus "Type specified for intrinsic function" }
12 c
= (/ i
, i
- 5, i
+ 5 /)
16 if (any (a
/= (/ 1, -4, 6 /)) .or
. any (b
/= (/ 16, 11, 21 /))) call abort