view gcc/testsuite/gfortran.dg/pr77978_1.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! { dg-options "-std=f95" }
subroutine a1
  integer, parameter :: i = -666
  stop i ! { dg-error "cannot be negative" }
end subroutine a1

subroutine a2
  stop -666 ! { dg-error "cannot be negative" }
end subroutine a2

subroutine a3
  integer, parameter :: i = 123456
  stop i ! { dg-error "too many digits" }
end subroutine a3

subroutine a4
  stop 123456 ! { dg-error "too many digits" }
end subroutine a4

!subroutine a5
!  stop merge(667,668,.true.) 
!end subroutine a5