aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/result_1.f90
blob: 96d2a1febe5704d4a4dd26ab09afe41dd43b025a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
! { 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 "GENERIC attribute conflicts with RESULT attribute" }
end type t ! { dg-error "Expecting END FUNCTION statement" }
end function

function i() result(t)
type t    ! { dg-error "GENERIC attribute conflicts with RESULT attribute" }
end function