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
Fix compilation failure with C++98 compilers
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr83864.f90
blob
a3858d23a027a6de7addde978071b7b486d8e315
1
! { dg-do run }
2
! PR fortran/83864
3
!
4
! Derived from PR by Contributed by Gerhard Steinmetz <gscfq@t-online.de>
5
!
6
program
p
7
implicit none
8
type
t
9
character
::
c
(
3
) =
transfer
(
'abc'
,
'z'
,
3
)
10
end type
t
11
type
(
t
) ::
x
12
if
(
any
(
x
%
c
/= [
"a"
,
"b"
,
"c"
]))
STOP
1
13
end