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
RISC-V: Refactor Dynamic LMUL codes
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
char_associated_1.f90
blob
415079ce185075eba0cbb9059f423b8b51561e6d
1
! Check that associated works correctly for character arrays.
2
! { dg-do run }
3
program
main
4
character
(
len
=
5
),
dimension
(:),
pointer
::
ptr
5
character
(
len
=
5
),
dimension
(
2
),
target
::
a
= (/
'abcde'
,
'fghij'
/)
6
ptr
=>
a
7
if
(.
not
.
associated
(
ptr
,
a
))
STOP
1
8
end program
main