nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / dec_structure_17.f90
blob18d3193e2f0db599a29126c7dee61d9887b4a606
1 ! { dg-do compile }
2 ! { dg-options "-fdec-structure" }
4 ! PR fortran/78277
6 ! Fix ICE for invalid structure declaration code.
9 subroutine sub1()
10 structure /s/
11 structure t
12 integer i
13 end structure
14 end structure
15 record /s/ u
16 interface
17 subroutine sub0(u)
18 structure /s/
19 structure t. ! { dg-error "Syntax error in anonymous structure decl" }
20 integer i
21 end structure
22 end structure
23 record /s/ u
24 end
25 end interface
26 call sub0(u)
27 end