summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/dec_structure_23.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/dec_structure_23.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/dec_structure_23.f906
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.dg/dec_structure_23.f90 b/gcc/testsuite/gfortran.dg/dec_structure_23.f90
index 78db344e0fc8..d79ecc7ff213 100644
--- a/gcc/testsuite/gfortran.dg/dec_structure_23.f90
+++ b/gcc/testsuite/gfortran.dg/dec_structure_23.f90
@@ -13,8 +13,8 @@ program p
integer :: nn
real :: rr
structure /s/
- integer x(n) /1/ ! { dg-error "array with nonconstant bounds" }
- integer xx(nn) /1/ ! { dg-error "array with nonconstant bounds" }
- integer xxx(rr) /1.0/ ! { dg-error "array with nonconstant bounds" }
+ integer x(n) /1/ ! { dg-error "must have an explicit shape" }
+ integer xx(nn) /1/ ! { dg-error "must have an explicit shape" }
+ integer xxx(rr) /1.0/ ! { dg-error "must have an explicit shape" }
end structure
end