lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / warn_conversion_11.f90
blob3393e07d31e6978a2d784a51387930344da500ad
1 ! { dg-do compile }
2 ! { dg-options "-Wconversion" }
3 ! PR 86119 - this used to warn.
4 program proglen
6 implicit none
8 class(*), allocatable :: s
9 integer :: l2
11 allocate(s, source = '123 ')
13 select type(s)
14 type is (character(len=*))
15 l2 = len(s)
16 end select
18 end program proglen