PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / module_parameter_array_refs_1.f90
blob9ef75d9e6910223df9783a4aee68d1f4e476a376
1 ! { dg-do compile }
2 ! Tests the fix for 26074, in which the array reference below would
3 ! be determined not to be constant within modules.
5 ! Contributed by Jonathan Dursi <ljdursi@cita.utoronto.ca>
7 module foo
9 integer, parameter :: len = 5
10 integer :: arr(max(len,1))
12 end