PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / typebound_proc_34.f90
blobbf2b882bb7a025a5f63d8c2cf2e509a620c91eb6
1 ! { dg-do compile }
3 ! PR 60952: [F03] Problem using "end" as a type bound procedure and contained procedures
5 ! Contributed by tlcclt <Thomas.L.Clune@nasa.gov>
7 module A_mod
8 implicit none
10 type A
11 contains
12 procedure, nopass :: end
13 end type
15 contains
17 subroutine swap
18 contains
19 subroutine subSwap
20 end subroutine
21 end subroutine
23 integer function end()
24 end function
26 end module