summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/optional_dim.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/optional_dim.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/optional_dim.f9010
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/optional_dim.f90 b/gcc/testsuite/gfortran.dg/optional_dim.f90
new file mode 100644
index 000000000..dd201fbf4
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/optional_dim.f90
@@ -0,0 +1,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
+