diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/class_64.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/class_64.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/class_64.f90 b/gcc/testsuite/gfortran.dg/class_64.f90 index 059ebaa8a01..d0209a101c9 100644 --- a/gcc/testsuite/gfortran.dg/class_64.f90 +++ b/gcc/testsuite/gfortran.dg/class_64.f90 @@ -22,7 +22,7 @@ contains class(*) :: arg select type (arg) type is (mytype) - if (arg%i .ne. 99_8) call abort + if (arg%i .ne. 99_8) STOP 1 end select end subroutine @@ -30,7 +30,7 @@ contains class(mytype) :: arg select type (arg) type is (mytype) - if (arg%i .ne. 99_8) call abort + if (arg%i .ne. 99_8) STOP 2 end select end subroutine |