aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/module_parameter_array_refs_1.f90
blob: 9ef75d9e6910223df9783a4aee68d1f4e476a376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! { 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