diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/class_array_4.f03')
-rw-r--r-- | gcc/testsuite/gfortran.dg/class_array_4.f03 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/class_array_4.f03 b/gcc/testsuite/gfortran.dg/class_array_4.f03 index 46b254db676..ee5dde39441 100644 --- a/gcc/testsuite/gfortran.dg/class_array_4.f03 +++ b/gcc/testsuite/gfortran.dg/class_array_4.f03 @@ -21,5 +21,5 @@ end module m type(t) :: x(3) integer :: n(3) = [0,100,200] call x(:)%foo(n) - if (any(n .ne. [99,199,299])) call abort + if (any(n .ne. [99,199,299])) STOP 1 end |