aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/result_1.f90
blob: 162ffaf5857520c3eb33cade226a272eb3874a55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
! { dg-do compile }
!
! PR 36704: Procedure pointer as function result
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

function f() result(r)
real, parameter :: r = 5.0    ! { dg-error "attribute conflicts" }
end function 

function g() result(s)
real :: a,b,c
namelist /s/ a,b,c    ! { dg-error "attribute conflicts" }
end function

function h() result(t)
type t    ! { dg-error "attribute conflicts" }
end function