PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / reshape_order_3.f90
blob4b757f81cb4ce1168c223ee15ba7daa7ab0cdbd4
1 ! { dg-do run }
2 ! { dg-options "-fbounds-check" }
3 ! { dg-shouldfail "Duplicate value 2 in ORDER argument to RESHAPE intrinsic" }
4 program main
5 implicit none
6 integer(kind=4), dimension(6) :: source1 = (/ 1, 2, 3, 4, 5, 6 /)
7 integer, dimension(2) :: shape1 = (/ 2, 3/)
8 integer(kind=4), dimension(2) :: pad1 = (/ 0, 0/)
9 character(len=200) :: l1, l2
10 integer :: i1, i2
12 l1 = "2 2"
13 read(unit=l1,fmt=*) i1, i2
14 write (unit=l2,fmt=*) reshape(source1, shape1, pad1, (/i1, i2/)) ! Invalid
15 end program main
16 ! { dg-output "Fortran runtime error: Duplicate value 2 in ORDER argument to RESHAPE intrinsic" }