aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gfortran.dg/bounds_check_array_ctor_8.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gfortran.dg/bounds_check_array_ctor_8.f90')
-rw-r--r--gcc-4.8/gcc/testsuite/gfortran.dg/bounds_check_array_ctor_8.f9016
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc-4.8/gcc/testsuite/gfortran.dg/bounds_check_array_ctor_8.f90 b/gcc-4.8/gcc/testsuite/gfortran.dg/bounds_check_array_ctor_8.f90
new file mode 100644
index 000000000..0d4ad0cfe
--- /dev/null
+++ b/gcc-4.8/gcc/testsuite/gfortran.dg/bounds_check_array_ctor_8.f90
@@ -0,0 +1,16 @@
+! { dg-do run }
+! { dg-options "-fbounds-check" }
+! { dg-shouldfail "foo" }
+!
+! PR 36112
+! Check correct bounds-checking behaviour for character-array-constructors.
+
+ call test ("short")
+contains
+ subroutine test(s)
+ character(len=*) :: s
+ character(len=128) :: arr(3)
+ arr = (/ s, "this is long", "this one too" /)
+ end subroutine test
+end
+! { dg-output "Different CHARACTER lengths \\(5/12\\) in array constructor" }