modula2: Simplify REAL/LONGREAL/SHORTREAL node creation.
[official-gcc.git] / gcc / testsuite / gfortran.dg / transpose_5.f90
blobed4b643acbf6fda92c7c33b62e391a6947a42752
1 ! { dg-do compile }
2 ! { dg-options "-O2" }
3 ! PR fortran/99840 - ICE in gfc_simplify_matmul, at fortran/simplify.c:4777
4 program p
5 integer, parameter :: x(0,0) = 0
6 integer :: y(0,0)
7 y = matmul (x, transpose(x))
8 end