[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git] / flang / test / Semantics / bind-c17.f90
blob8e0ecde67a0a50fbde9612aa7f5215e43765eea4
1 ! RUN: %python %S/test_errors.py %s %flang_fc1 -pedantic -Werror
2 module m
3 type a ! not BIND(C)
4 end type
5 contains
6 subroutine sub(x) bind(c)
7 !PORTABILITY: The derived type of this interoperable object should be BIND(C)
8 type(a), pointer, intent(in) :: x
9 end
10 end