2018-09-30 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / hollerith_f95.f90
blob7202ca3d97583f86937eb812db71eec5c4ba64a2
1 ! { dg-do compile }
2 ! { dg-options " -std=f95" }
3 ! PR15966, PR18781 & PR16531
4 implicit none
5 complex(kind=8) x(2)
6 complex a(2,2)
7 character(4) z
8 character z1(4)
9 character(4) z2(2,2)
10 character(80) line
11 integer i
12 logical l
13 real r
14 character(8) c
16 data x /16Habcdefghijklmnop, 16Hqrstuvwxyz012345/
17 data a /8H(i3),abc, 0, 4H(i4), 8H (i9)/
18 data z/4h(i5)/
19 data z1/1h(,1hi,1h6,1h)/
20 data z2/4h(i7),'xxxx','xxxx','xxxx'/
22 z2 (1,2) = 4h(i8)
23 i = 4hHell
24 l = 4Ho wo
25 r = 4Hrld!
26 write (line, '(3A4)') i, l, r
27 if (line .ne. 'Hello world!') STOP 1
28 i = 2Hab
29 r = 2Hab
30 l = 2Hab
31 c = 2Hab
32 write (line, '(3A4, 8A)') i, l, r, c
33 if (line .ne. 'ab ab ab ab ') STOP 2
35 write(line, '(4A8, "!")' ) x
36 if (line .ne. 'abcdefghijklmnopqrstuvwxyz012345!') STOP 3
38 write (line, a) 3
39 if (line .ne. ' 3') STOP 4
40 write (line, a (1,2)) 4
41 if (line .ne. ' 4') STOP 5
42 write (line, z) 5
43 if (line .ne. ' 5') STOP 6
44 write (line, z1) 6
45 if (line .ne. ' 6') STOP 7
46 write (line, z2) 7
47 if (line .ne. ' 7') STOP 8
48 write (line, z2 (1,2)) 8
49 if (line .ne. ' 8') STOP 9
50 write (line, '(16A)') z2
51 if (line .ne. '(i7)xxxx(i8)xxxx') STOP 10
52 call test (8h hello)
53 end
55 subroutine test (h)
56 integer(kind=8) h
57 character(80) line
59 write (line, '(8a)') h
60 if (line .ne. ' hello') STOP 11
61 end subroutine
63 ! { dg-error "Hollerith constant" "const" { target *-*-* } 16 }
65 ! { dg-error "Hollerith constant" "const" { target *-*-* } 17 }
67 ! { dg-error "Hollerith constant" "const" { target *-*-* } 18 }
69 ! { dg-error "Hollerith constant" "const" { target *-*-* } 19 }
71 ! { dg-error "Hollerith constant" "const" { target *-*-* } 20 }
73 ! { dg-error "Hollerith constant" "const" { target *-*-* } 22 }
75 ! { dg-error "Hollerith constant" "const" { target *-*-* } 23 }
77 ! { dg-error "Hollerith constant" "const" { target *-*-* } 24 }
79 ! { dg-error "Hollerith constant" "const" { target *-*-* } 25 }
81 ! { dg-error "Hollerith constant" "const" { target *-*-* } 28 }
83 ! { dg-error "Hollerith constant" "const" { target *-*-* } 29 }
85 ! { dg-error "Hollerith constant" "const" { target *-*-* } 30 }
87 ! { dg-error "Hollerith constant" "const" { target *-*-* } 31 }
89 ! { dg-error "Hollerith constant" "const" { target *-*-* } 52 }
91 ! { dg-error "Non-character in FORMAT tag" "" { target *-*-* } 38 }
93 ! { dg-error "Non-character in FORMAT tag" "" { target *-*-* } 40 }