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
ieee_9.f90: XFAIL on arm*-*-gnueabi[hf].
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
module_procedure_double_colon_4.f90
blob
d56823c1f6ab5a30c89652ff2435d69fb1a041f8
1
! { dg-do compile }
2
! { dg-options "-std=f2008" }
3
!
4
! PR fortran/49265
5
!
6
! Contributed by Erik Toussaint
7
!
8
module
m1
9
implicit none
10
interface
foo
11
procedure
::
bar
! "::" is valid since Fortran 2008
12
end interface
13
contains
14
subroutine
bar
15
end subroutine
16
end module