aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/func_decl_5.f90
blob: 9cd4735374d966371acd67d8c156970f975a0b3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! { dg-do compile }
! { dg-options "-c" }
!
! Functions shall not have an initializer.
!
! Some tests were moved from func_decl_4.f90 to here.
!

function f1()                      ! { dg-error "cannot have an initializer" }
  integer :: f1 = 42
end function

function f2() RESULT (r)           ! { dg-error "cannot have an initializer" }
  integer :: r = 42
end function