PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / extends_12.f03
blob972ab3a743579f009766272aafcbd5eb8510e8c8
1 ! { dg-do compile }
3 ! PR 48706: Type extension inside subroutine
5 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
7 module mod_diff_01
8   implicit none
9   type :: foo
10   end type
11 contains
12   subroutine create_ext
13     type, extends(foo) :: foo_e
14     end type
15   end subroutine
16 end module
18 program diff_01
19   use mod_diff_01
20   implicit none
21   call create_ext()
22 end program