1! { dg-do run }
2! PR33421 and PR33253 Weird quotation of namelist output of character arrays
3! Test case from Toon Moone, adapted by Jerry DeLisle  <jvdelisle@gcc.gnu.org>
4
5! Long names used to test line_buffer feature is working.
6
7program test
8implicit none
9character(len=45) :: b01234567890123456789012345678901234567890123456789012345678901(3)
10namelist /nam/ b01234567890123456789012345678901234567890123456789012345678901
11b01234567890123456789012345678901234567890123456789012345678901 = 'x'
12open(99, status="scratch")
13write(99,'(4(a,/),a)') "&NAM", &
14      " b01234567890123456789012345678901234567890123456789012345678901(1)=' AAP NOOT MIES WIM ZUS JET',", &
15      " b01234567890123456789012345678901234567890123456789012345678901(2)='SURF.PRESSURE',", &
16      " b01234567890123456789012345678901234567890123456789012345678901(3)='APEKOOL',", &
17      " /"
18rewind(99)
19read(99,nml=nam)
20close(99)
21
22if (b01234567890123456789012345678901234567890123456789012345678901(1).ne.&
23    " AAP NOOT MIES WIM ZUS JET                   ") STOP 1
24if (b01234567890123456789012345678901234567890123456789012345678901(2).ne.&
25    "SURF.PRESSURE                                ") STOP 2
26if (b01234567890123456789012345678901234567890123456789012345678901(3).ne.&
27    "APEKOOL                                      ") STOP 3
28end program test
29
30