aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/func_decl_1.f90
blob: c5576ef48dedfaa2655b07bdf89a060e0cbd0a27 (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 compile }
! we didn't correctly reject function declarations without argument lists
! note that there are no end statements for syntactically wrong function
! declarations
  interface
     function f1     ! { dg-error "Expected formal argument list" }
     function f3()
     end function f3
     function f4 result (x) ! { dg-error "Expected formal argument list" }
     function f5() result (x)
     end function f5
   end interface
  f1 = 1.
end

FUNCTION f1          ! { dg-error "Expected formal argument list" }

function f2()
  f2 = 1.
end function f2

function f3 result (x) ! { dg-error "Expected formal argument list" }

function f4 () result (x)
  x = 4.
end function f4