| ! RUN: %python %S/test_symbols.py %s %flang_fc1 |
| ! Test that intent-stmt and subprogram prefix and suffix are resolved. |
| !DEF: /m/f PRIVATE, PURE, RECURSIVE (Function) Subprogram REAL(4) |
| !DEF: /m/s BIND(C), PUBLIC, PURE (Subroutine) Subprogram |
| !DEF: /m/s/x INTENT(IN) (Implicit) ObjectEntity REAL(4) |
| !DEF: /m/s/y INTENT(INOUT) (Implicit) ObjectEntity REAL(4) |
| pure subroutine s (x, y) bind(c) |
| !DEF: /m/s/ss PURE (Subroutine) Subprogram |
| !DEF: /m/f/x ALLOCATABLE ObjectEntity REAL(4) |
| recursive pure function f() result(x) |