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
/
Parser
/
missing-colons.f90
blob
ebb728cf0810cdcd1c0114d4d81f2c1a0f3321a8
1
! RUN: %flang_fc1 -fsyntax-only -pedantic %s 2>&1 | FileCheck %s
2
module
m
3
type
t
4
contains
5
!CHECK: portability: type-bound procedure statement should have '::' if it has '=>'
6
procedure p
=>
sub
7
end type
8
contains
9
subroutine
sub
(
x
)
10
class
(
t
),
intent
(
in
) ::
x
11
end subroutine
12
end module
13