Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / namelist_32.f90
blob76d51483394bef15369025b2c3f5fd101078b9b1
1 ! { dg-do compile }
2 ! One of two tests for the fix of PR23152 - An ICE would
3 ! ensue from assumed shape arrays in namelists.
5 ! Conributed by Paul Thomas <pault@gcc.gnu.org>
7 program assumed_size_nml
8 real, dimension (10) :: z
9 z = 42.0
10 call foo (z)
11 contains
12 subroutine foo (y)
13 real, DIMENSION (*) :: y
14 namelist /mynml/ y ! { dg-error "is not allowed" }
15 write (6, mynml)
16 end subroutine foo
17 end program assumed_size_nml