aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/intent_out_8.f90
blob: 674d8338bfaacc8e3677c0c4f8a1761a11a17df1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
! { dg-do compile }
! { dg-options "-Wall" }
!
! PR 53655: [F03] "default initializer" warnings
!
! Contributed by Tobias Burnus <burnus@gcc.gnu.org>

type t
end type t

contains

  subroutine foo(x)
    type(t), intent(out) :: x
  end subroutine

end