aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/result_default_init_1.f90
blob: 58872dfa65b2d5ef31bbf1a0512112778bb7e99f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
! { dg-do run }
! { dg-options "-O" }
! Test the fix for PR29216 in which function results did not
! get default initialization.
! Contributed by Stephan Kramer  <stephan.kramer@imperial.ac.uk>  
!
  type A
    integer, pointer:: p => null ()
    integer:: i=3
  end type A
  type(A):: x,y
  if (associated(x%p) .or. x%i /= 3) call abort ()
  x=f()
  if (associated(x%p) .or. x%i /= 3) call abort ()
  x=g()
  if (associated(x%p) .or. x%i /= 3) call abort ()
contains
  function f() result (fr)
    type(A):: fr
    if (associated(fr%p) .or. fr%i /= 3) call abort ()
  end function f
  function g()
    type(A):: g
    if (associated(g%p) .or. g%i /= 3) call abort ()
  end function g
end