aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/ptr-func-1.f90
blob: 3d24cd5e37e1e7b1b23532ec9e52310c573d7804 (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
! { dg-do compile }
! { dg-options "-std=f2008 " }
!
! PR fortran/46100
!
! Pointer function as definable actual argument
! - a Fortran 2008 feature
!
integer, target :: tgt
call one (two ())
if (tgt /= 774) STOP 1
contains
  subroutine one (x)
    integer, intent(inout) :: x
    if (x /= 34) STOP 2
    x = 774
  end subroutine one
  function two ()
    integer, pointer :: two
    two => tgt 
    two = 34
  end function two
end