summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/associate_34.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/associate_34.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/associate_34.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/associate_34.f90 b/gcc/testsuite/gfortran.dg/associate_34.f90
index 629c0b43611..925dee9ff74 100644
--- a/gcc/testsuite/gfortran.dg/associate_34.f90
+++ b/gcc/testsuite/gfortran.dg/associate_34.f90
@@ -15,7 +15,7 @@ contains
character(:), allocatable :: x
character(*) :: carg
associate (y => x)
- if (y .ne. carg) call abort
+ if (y .ne. carg) STOP 1
end associate
end
end