OSDN Git Service

2010-07-29 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / allocate_scalar_with_shape.f90
1 ! { dg-do "compile" }
2 ! PR fortran/41940
3
4 integer, allocatable :: a
5 TYPE :: x
6   integer, allocatable :: a
7 END TYPE
8 TYPE (x) :: y
9
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
13