AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / dec_structure_14.f90
blob0079e6c1c29b0b368dcfeb84772c8cc2a2331335
1 ! { dg-do compile }
2 ! { dg-options "-fdec-structure" }
4 ! Test that structures inside a common block do not require the
5 ! SEQUENCE attribute, as derived types do.
8 common var
10 structure /s/
11 integer i
12 integer j
13 real r
14 end structure
16 record /s/ var
18 end