lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr108544.f90
blob783cb7aaf7bd093ca768c721bfce97dc49b4ef40
1 ! { dg-do compile }
2 ! PR fortran/108544 - ICE in check_host_association
3 ! Contributed by G.Steinmetz
5 module m
6 contains
7 subroutine s
8 select type (s => 1) ! { dg-error "Selector shall be polymorphic" }
9 end select
10 end
11 end