Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
bbf3abfa
Commit
bbf3abfa
authored
Oct 07, 2015
by
Louis Krupp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check in forgotten test for fortran/65766
From-SVN: r228564
parent
3161455c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
gcc/testsuite/gfortran.dg/substr_alloc_string_comp_1.f90
+23
-0
No files found.
gcc/testsuite/gfortran.dg/substr_alloc_string_comp_1.f90
0 → 100644
View file @
bbf3abfa
! { dg-do run }
! PR fortran/65766
! Substrings of allocatable string components of derived types
program
substr_derived_alloc_comp
implicit
none
type
t1
character
(
len
=
:),
allocatable
::
s
end
type
t1
character
(
len
=*
),
parameter
::
c
=
&
"0123456789abcdefghijklmnopqrstuvwxyz"
type
(
t1
)
x1
integer
i
x1
%
s
=
c
do
i
=
1
,
36
if
(
x1
%
s
(
i
:)
.ne.
c
(
i
:))
call
abort
end
do
end
program
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment