aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/shape_1.f90
blob: 9292adb2e71db2deaf945412a197b1d8687e14d0 (plain)
1
2
3
4
5
6
! { dg-do compile }
! PR 13201 we used to not give an error in those cases
subroutine foo(n) 
  integer, parameter :: a(n) = 1           ! { dg-error "cannot be automatic" "automatic shape" }
  integer, parameter :: z(:) = (/ 1,2,3 /) ! { dg-error "cannot be automatic" "deferred shape" }
end subroutine