re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / module_procedure_double_colon_4.f90
blobd56823c1f6ab5a30c89652ff2435d69fb1a041f8
1 ! { dg-do compile }
2 ! { dg-options "-std=f2008" }
4 ! PR fortran/49265
6 ! Contributed by Erik Toussaint
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