diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/alloc_comp_constraint_4.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/alloc_comp_constraint_4.f90 | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/alloc_comp_constraint_4.f90 b/gcc/testsuite/gfortran.dg/alloc_comp_constraint_4.f90 new file mode 100644 index 000000000..e24bfe0a2 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/alloc_comp_constraint_4.f90 @@ -0,0 +1,21 @@ +! { dg-do compile } +! Tests the fix for PR29422, in which function results +! were not tested for suitability in IO statements. +! +! Contributed by Dominique d'Humieres <dominiq@lps.ens.fr> +! +Type drv + Integer :: i + Integer, allocatable :: arr(:) +End type drv + + print *, fun1 () ! { dg-error "cannot have ALLOCATABLE" } + +contains + Function fun1 () + + Type(drv) :: fun1 + fun1%i = 10 + end function fun1 +end + |