lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr103366.f90
blobd5d25dece09da9f52c43a38d002ec405e7d9d297
1 ! { dg-do compile }
3 ! Test the fix for PR103366.
5 ! Contributed by Gerhardt Steinmetz <gscfq@t-online.de>
7 program p
8 call u([1])
9 contains
10 subroutine s(x) bind(c)
11 type(*) :: x(..)
12 end
13 subroutine u(x)
14 class(*) :: x(..)
15 call s(x) ! Used to ICE here
16 end
17 end