9 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc1 -Werror2! Ensure that a seemingly misparsed function reference is3! not converted to an array references of the same name if4! there's an argument keyword.5real array(1)6!ERROR: 'array' is not a callable procedure7print *, array(argument=1)8end9