[flang] Fix error in characteristics check at procedure pointer assignment
If the procedure pointer has an explicit interface, its characteristics must equal the characteristics of its target, except that the target may be pure or elemental also when the pointer is not (cf. F2018 10.2.2.4(3)). In the semantics check for assignment of procedure pointers, the attributes of the procedures were not checked correctly due to a typo. This caused some illegal pointer-target-combinations to pass without raising an error. Fix this, and expand the test case to improve the coverage of procedure pointer assignment checks. Reviewed By: PeteSteinfeld Differential Revision: https://reviews.llvm.org/D113368
Loading
Please sign in to comment