aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/PR19754_1.f90
blob: b554d1094c5ff28af66a793f8932f3e576f36f3b (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }
! Test of fix to PR19754
program PR19754_1
   real x(3,3),y(2,2)
   x = 1.
   y = 2.
   x = x + y ! { dg-error "Shapes for operands at" }
end program PR19754_1