lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr83939.f90
blobdfeaac71630c7afcd097cf0e3163ba979f267324
1 ! { dg-do compile }
2 elemental function f() result(s) ! { dg-error "shall not have an ALLOCATABLE or POINTER" }
3 allocatable s
4 allocate(s)
5 s = 3.5
6 end function
8 elemental function g() result(s) ! { dg-error "shall not have an ALLOCATABLE or POINTER" }
9 pointer s
10 allocate(s)
11 s = 3.5
12 end function