| ! RUN: %python %S/test_errors.py %s %flang_fc1 |
| !ERROR: The default accessibility of this module has already been declared |
| !ERROR: PUBLIC statement may only appear in the specification part of a module |
| !ERROR: PRIVATE attribute may only appear in the specification part of a module |
| integer, private :: i !C817 |
| !ERROR: PUBLIC attribute may only appear in the specification part of a module |
| integer, public :: i !C817 |
| !ERROR: PUBLIC statement may only appear in the specification part of a module |
| !ERROR: PUBLIC attribute may only appear in the specification part of a module |
| !ERROR: PRIVATE attribute may only appear in the specification part of a module |