PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / dec_union_8.f90
blob2d856fc44efa4ab45380656f13c53c323c53beec
1 ! { dg-do compile }
2 ! { dg-options "-fdec-structure" }
4 ! PR fortran/77764
6 ! Test an ICE due to a map with zero components.
9 program p
11 structure /s1/
12 union
13 map
14 end map
15 map
16 real :: a = 2.0
17 end map
18 end union
19 end structure
21 end