xref: /llvm-project/flang/test/Semantics/struct03.f90 (revision 0684db30a1e3226a0bfe4c5d839d1355a66ea4ba)
1! RUN: %python %S/test_errors.py %s %flang_fc1
2  structure /s/
3    !ERROR: entity declarations are required on a nested structure
4    structure /nested/
5    end structure
6  end structure
7end
8