diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/alloc_comp_class_1.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/alloc_comp_class_1.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/alloc_comp_class_1.f90 b/gcc/testsuite/gfortran.dg/alloc_comp_class_1.f90 index 8add2c7f486..722efc80fe1 100644 --- a/gcc/testsuite/gfortran.dg/alloc_comp_class_1.f90 +++ b/gcc/testsuite/gfortran.dg/alloc_comp_class_1.f90 @@ -23,7 +23,7 @@ end module d_mat_mod allocate (b%a) b%a%i = 42 call bug14 (b) - if (allocated (b%a)) call abort + if (allocated (b%a)) STOP 1 contains subroutine bug14(a) implicit none |