lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / bind_c_usage_34.f90
blob40c8e9363cffaa2d6f69d695803d65bcbb2f0d5b
1 ! { dg-do compile }
2 ! PR fortran/104332 - ICE with bind(c) in block data
3 ! Contributed by G. Steinmetz
5 block data
6 bind(c) :: a ! { dg-error "cannot be BIND\\(C\\)" }
7 end
9 block data aa
10 real, bind(c) :: a ! { dg-error "cannot be BIND\\(C\\)" }
11 end
13 block data bb
14 real :: a ! { dg-error "cannot be BIND\\(C\\)" }
15 bind(c) :: a
16 end
18 block data cc
19 common /a/ x
20 bind(c) :: /a/
21 end