diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/func_assign_3.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/func_assign_3.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/func_assign_3.f90 b/gcc/testsuite/gfortran.dg/func_assign_3.f90 index db81adf8ec0..1d4ff15f07b 100644 --- a/gcc/testsuite/gfortran.dg/func_assign_3.f90 +++ b/gcc/testsuite/gfortran.dg/func_assign_3.f90 @@ -27,5 +27,5 @@ program bugTest double precision, dimension(2,2):: testCatch type( boundTest ):: testObj testCatch = testObj%test(2,2) ! This would cause an ICE - if (any (testCatch .ne. dble (reshape ([(i, i = 1, 4)],[2,2])))) call abort + if (any (testCatch .ne. dble (reshape ([(i, i = 1, 4)],[2,2])))) STOP 1 end program bugTest |