PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / altreturn_8.f90
blob63a6ef724200f2a8ee621aa13ca5791e7036ae23
1 ! { dg-do compile }
2 ! { dg-options "-std=gnu" }
4 ! PR 56284: [OOP] ICE with alternate return in type-bound procedure
6 ! Contributed by Arjen Markus <arjen.markus@deltares.nl>
8 module try_this
9 implicit none
11 type :: table_t
12 contains
13 procedure, nopass :: getRecord
14 end type
16 contains
18 subroutine getRecord ( * )
19 end subroutine
21 end module