aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr99349.f90
blob: e1f4628af0b11991fcc54fa83ff8f2cba1f13a9b (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }
! PR fortran/99349 - ICE in match_data_constant
! Contributed by G.Steinmetz

function f()
  logical, parameter :: a((1.)/0) = .true. ! { dg-error "Parameter array" }
  integer :: b
  data b /a%kind/ ! { dg-error "Syntax error" }
end