diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/alloc_comp_constraint_2.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/alloc_comp_constraint_2.f90 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/alloc_comp_constraint_2.f90 b/gcc/testsuite/gfortran.dg/alloc_comp_constraint_2.f90 new file mode 100644 index 000000000..c37edb6bc --- /dev/null +++ b/gcc/testsuite/gfortran.dg/alloc_comp_constraint_2.f90 @@ -0,0 +1,15 @@ +! { dg-do compile } +! Check that equivalence with allocatable components isn't allowed (PR 20541) +program main + + type :: foo + sequence + integer, allocatable :: x(:) + end type foo + + type(foo) :: a + integer :: b + + equivalence (a, b) ! { dg-error "cannot have ALLOCATABLE components" } + +end program main |