2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / intent_out_8.f90
blob674d8338bfaacc8e3677c0c4f8a1761a11a17df1
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)
14 type(t), intent(out) :: x
15 end subroutine
17 end