lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr94380.f90
blobe29594f2ff970e01da0a91422d9386ea8d845e84
1 ! { dg-do compile }
3 ! Contributed by Vladimir Nikishkin <lockywolf@gmail.com>
5 module test
6 type testtype
7 class(*), allocatable :: t
8 end type testtype
9 contains
10 subroutine testproc( x )
11 class(testtype) :: x
12 associate ( temp => x%t)
13 select type (temp)
14 type is (integer)
15 end select
16 end associate
17 end subroutine testproc
18 end module test