aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/dec_structure_19.f90
blob: 1ec58b2f99c07253efe17f43c57d5716b8230d91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
! { dg-do compile }
! { dg-options "-fdec-structure -ffree-form" }
!
! Test the %FILL component extension.
!
implicit none

structure /s/
  character(2) i
  character(2) %fill
  character(2) j
end structure

structure /s2/
  character buf(6)
end structure

record /s/ x
record /s2/ y
equivalence (x, y)

x.i = "12"
x.j = "34"

if (y.buf(1) .ne. '1') then
  STOP 1
endif
if (y.buf(2) .ne. '2') then
  STOP 2
endif
if (y.buf(5) .ne. '3') then
  STOP 3
endif
if (y.buf(6) .ne. '4') then
  STOP 4
endif

end