diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/func_decl_5.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/func_decl_5.f90 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/func_decl_5.f90 b/gcc/testsuite/gfortran.dg/func_decl_5.f90 new file mode 100644 index 000000000..9cd473537 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/func_decl_5.f90 @@ -0,0 +1,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 |