2010-11-30 Tobias Burnus <burnus@net-b.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / allocate_scalar_with_shape.f90
blob1f4f9d52a2ee0121a2a680e0222afc43a563ee6c
1 ! { dg-do "compile" }
2 ! PR fortran/41940
4 integer, allocatable :: a
5 TYPE :: x
6 integer, allocatable :: a
7 END TYPE
8 TYPE (x) :: y
10 allocate(a(4)) ! { dg-error "Shape specification for allocatable scalar" }
11 allocate(y%a(4)) ! { dg-error "Shape specification for allocatable scalar" }
12 end