xref: /llvm-project/flang/test/Semantics/procinterface03.f90 (revision 635656f4ff1e0b74761af109f50d33287477d1db)
1! RUN: %python %S/test_errors.py %s %flang_fc1
2procedure(sin), pointer :: pp
3!ERROR: 'pp' has an explicit interface and may not also have a type
4real :: pp
5end
6