Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr108529.f90
blob34c9691fae13b4f7cc65cd8b53576b4ea99d7b33
1 ! { dg-do compile }
2 ! PR fortran/108529 - ICE in transformational_result
3 ! Contributed by G.Steinmetz
5 program p
6 integer, parameter :: a(*,*) = reshape([1, 2, 3, 4], [2, 2])
7 logical, parameter :: b(2,*) = a > 2 ! { dg-error "Assumed size" }
8 logical, parameter :: c(*) = all(b, 1) ! { dg-error "Bad shape" }
9 end