[TableGen] Avoid repeated map lookups (NFC) (#126381)
[llvm-project.git] / flang / test / Semantics / bug123538.f90
blob2245abe3829e2c6e5f7d6e45ab523b5848cda750
1 !RUN: %python %S/test_errors.py %s %flang_fc1
2 procedure(), pointer :: pp => tan
3 !ERROR: EXTERNAL attribute was already specified on 'pp'
4 !ERROR: POINTER attribute was already specified on 'pp'
5 !ERROR: 'pp' was previously initialized
6 procedure(real), pointer :: pp => tan
7 end