repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2017-02-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
module_procedure_double_colon_3.f90
blob
620f82ac1fa605cd1ca711d524f3ebdfd99a1041
1
! { dg-do compile }
2
! { dg-options "-std=f2003" }
3
!
4
! PR fortran/49265
5
!
6
! Contributed by Erik Toussaint
7
!
8
module
m1
9
implicit none
10
interface
foo
11
procedure
::
bar
! { dg-error "Fortran 2008: double colon in MODULE PROCEDURE statement" }
12
end interface
13
contains
14
subroutine
bar
15
end subroutine
16
end module