1 ! RUN: %python %S/test_errors.py %s %flang_fc1
8 module subroutine sub1(a
, b
)
10 real, intent(out
) :: b
12 logical module function f()
19 !ERROR: Left-hand side of assignment is not definable
20 !BECAUSE: 'a' is an INTENT(IN) dummy argument
23 !ERROR: No intrinsic or user-defined ASSIGNMENT(=) matches operand types REAL(4) and LOGICAL(4)
28 !ERROR: No intrinsic or user-defined ASSIGNMENT(=) matches operand types LOGICAL(4) and REAL(4)