(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
pr71859.f90
! { dg-do compile }
program p
   call s(1)
   x = abs(s)  ! { dg-error "must have a numeric type" }
end
subroutine s(n)
   print *, n
end