view gcc/testsuite/gfortran.dg/module_parameter_array_refs_1.f90 @ 128:fe568345ddd5

fix CbC-example
author mir3636
date Wed, 11 Apr 2018 19:32:28 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! Tests the fix for 26074, in which the array reference below would
! be determined not to be constant within modules.
!
! Contributed by Jonathan Dursi  <ljdursi@cita.utoronto.ca>
!
module foo

   integer, parameter :: len = 5
   integer :: arr(max(len,1))

end