repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2011-05-23 Tom de Vries <tom@codesourcery.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
allocate_scalar_with_shape.f90
blob
0fa9ce1fce9c2d8ea2e4b2bbf956c80ace473e15
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