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
PR ipa/83051
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr80752.f90
blob
00a4b33d29ad7370b03632e2a0689545f5ff58af
1
! { dg-do compile }
2
! PR fortran/80752
3
module
exchange_utils
4
5
implicit none
6
7
integer
,
parameter
,
public
::
knd
=
8
8
9
type
,
private
::
a
10
logical
::
add_vs98
=
0.0
_knd
! { dg-error "Can't convert" }
11
end type
a
12
13
type
,
private
::
x_param_t
14
type
(
a
) ::
m05_m06
15
end type
x_param_t
16
17
type
(
x_param_t
),
public
,
save
::
x_param
18
19
end module
exchange_utils
20