(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
intrinsic_short-long.f90
! { dg-do compile }
!
! Checking for removal of SHORT and LONG intrinsics.
!
  real,parameter :: a=3.1415927
  integer :: i

  i=SHORT(a) ! { dg-error "has been removed" }
  i=LONG(a)  ! { dg-error "has been removed" }

  end