summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/dec_structure_23.f90
diff options
context:
space:
mode:
authorforeese <foreese@138bc75d-0d04-0410-961f-82ee72b054a4>2018-07-16 20:55:32 +0000
committerforeese <foreese@138bc75d-0d04-0410-961f-82ee72b054a4>2018-07-16 20:55:32 +0000
commit1d242a3178e336c490c2ab9e460db7373949c869 (patch)
tree2e84e1635197e820138585cd97921a159f344148 /gcc/testsuite/gfortran.dg/dec_structure_23.f90
parent1fed49d5255e5358b792fb5d9e9b9058aa817f3a (diff)
2018-07-16 Fritz Reese <fritzoreese@gmail.com>
gcc/testsuite/ChangeLog: PR fortran/83184 * gfortran.dg/dec_structure_23.f90: Oops, "un-fix" error messages. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-8-branch@262748 138bc75d-0d04-0410-961f-82ee72b054a4
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 d79ecc7ff213..78db344e0fc8 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 "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" }
+ 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" }
end structure
end