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
2017-02-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
coarray_poly_1.f90
blob
03dbee79839359f4fb6c55170fea8e2b553e1964
1
! { dg-do compile }
2
! { dg-options "-fcoarray=single" }
3
!
4
! Test for polymorphic coarrays
5
!
6
subroutine
s2
()
7
type
t
8
end type
t
9
class
(
t
) ::
A
(:)[
4
,
2
:*]
! { dg-error "is not ALLOCATABLE, SAVE nor a dummy argument" }
10
print
*,
ucobound
(
a
)
11
allocate
(
a
)
! { dg-error "must be ALLOCATABLE or a POINTER" }
12
end
13