aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/optional_dim.f90
blob: dd201fbf48a7c56fa13f9f290a8578ff77712dbb (plain)
1
2
3
4
5
6
7
8
9
10
! { dg-do compile }
subroutine foo(a,n)
  real, dimension(2) :: a
  integer, optional :: n
  print *,maxloc(a,dim=n) ! { dg-error "must not be OPTIONAL" }
  print *,maxloc(a,dim=4) ! { dg-error "is not a valid dimension index" }
  print *,maxval(a,dim=n) ! { dg-error "must not be OPTIONAL" }
  print *,maxval(a,dim=4) ! { dg-error "is not a valid dimension index" }
end subroutine foo