lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / intent_out_8.f90
blob6360314dd2cce7db045636336ed3ca8a95114baa
1 ! { dg-do compile }
2 ! { dg-options "-Wall" }
4 ! PR 53655: [F03] "default initializer" warnings
6 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
8 type t
9 end type t
11 contains
13 subroutine foo(x) ! { dg-warning "defined but not used" }
14 type(t), intent(out) :: x
15 end subroutine
17 end