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
* cfghooks.c (verify_flow_info): Disable check that all probabilities
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
unlimited_polymorphic_27.f90
blob
c16831eff78b76da700246813d4ac854282a1e46
1
! { dg-do compile }
2
!
3
! PR 78800: [OOP] ICE in compare_parameter, at fortran/interface.c:2246
4
!
5
! Contributed by Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de>
6
7
program
p
8
type
t
9
end type
10
class
(*) ::
z
! { dg-error "must be dummy, allocatable or pointer" }
11
call
s
(
z
)
12
contains
13
subroutine
s
(
x
)
14
type
(
t
) ::
x
15
end
16
end