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
ieee_9.f90: XFAIL on arm*-*-gnueabi[hf].
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr85798.f90
blob
1cc224d1fef4420676af03ed9c7e8a93f5489dd2
1
! { dg-do compile }
2
program
p
3
type
t
4
integer
,
allocatable
::
a
(:)
5
end type
6
type
u
7
real
x
8
type
(
t
)
y
9
end type
10
type
(
t
) ::
z
11
type
(
u
) ::
q
12
data
z
%
a
(
1
) /
789
/
! { dg-error "Allocatable component" }
13
data
q
%
y
%
a
(
1
) /
789
/
! { dg-error "Allocatable component" }
14
end