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
2017-12-08 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
auto_internal_assumed.f90
blob
ec0ea7f1510a63cfc6eacd0c96db7bfd99877b8d
1
! { dg-do compile }
2
! Test fix of PR24705 - ICE on assumed character length
3
! internal function.
4
!
5
character
(
6
) ::
c
6
c
=
f1
()
7
if
(
c
.
ne
.
'abcdef'
)
call
abort
8
contains
9
function
f1
()
! { dg-error "must not be assumed length" }
10
character
(*) ::
f1
11
f1
=
'abcdef'
12
end function
f1
13
end