annotate gcc/testsuite/gfortran.dg/optional_dim.f90 @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ! { dg-do compile }
kono
parents:
diff changeset
2 subroutine foo(a,n)
kono
parents:
diff changeset
3 real, dimension(2) :: a
kono
parents:
diff changeset
4 integer, optional :: n
kono
parents:
diff changeset
5 print *,maxloc(a,dim=n) ! { dg-error "must not be OPTIONAL" }
kono
parents:
diff changeset
6 print *,maxloc(a,dim=4) ! { dg-error "is not a valid dimension index" }
kono
parents:
diff changeset
7 print *,maxval(a,dim=n) ! { dg-error "must not be OPTIONAL" }
kono
parents:
diff changeset
8 print *,maxval(a,dim=4) ! { dg-error "is not a valid dimension index" }
kono
parents:
diff changeset
9 end subroutine foo
kono
parents:
diff changeset
10