summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/allocate_scalar_with_shape.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/allocate_scalar_with_shape.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/allocate_scalar_with_shape.f9013
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/allocate_scalar_with_shape.f90 b/gcc/testsuite/gfortran.dg/allocate_scalar_with_shape.f90
new file mode 100644
index 000000000..0fa9ce1fc
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/allocate_scalar_with_shape.f90
@@ -0,0 +1,13 @@
+! { dg-do compile }
+! PR fortran/41940
+
+integer, allocatable :: a
+TYPE :: x
+ integer, allocatable :: a
+END TYPE
+TYPE (x) :: y
+
+allocate(a(4)) ! { dg-error "Shape specification for allocatable scalar" }
+allocate(y%a(4)) ! { dg-error "Shape specification for allocatable scalar" }
+end
+