aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr71859.f90
blob: 0dc617786ce176e80b4843a8da6bc45e550b36d2 (plain)
1
2
3
4
5
6
7
8
! { 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