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
Merge from mainline.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
arrayio_derived_2.f90
blob
5ebe602fd003b44d977faec37cf37b467f73409d
1
! { dg-do compile }
2
! PR 24266: IO to/from arrays that are components of derived types.
3
program
main
4
implicit none
5
6
type
ice
7
character
(
len
=
80
) ::
mess
(
3
)
8
end type
ice
9
type
(
ice
) ::
tp
10
integer
::
i
11
character
(
len
=
80
) ::
mess
12
13
write
(
tp
%
mess
,*)
"message"
14
read
(
tp
%
mess
,*)
mess
15
print
*,
mess
16
17
end program
main