repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git]
/
flang
/
test
/
Semantics
/
bind-c17.f90
blob
8e0ecde67a0a50fbde9612aa7f5215e43765eea4
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