Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
extern
/
issue-18819.rs
blob: e634c55f824fdf770f04658e7181b4ccdb79d119 [
file
] [
log
] [
blame
] [
edit
]
trait
Foo
{
type
Item
;
}
struct
X
;
impl
Foo
for
X
{
type
Item
=
bool
;
}
fn
print_x
(
_
:
&
dyn
Foo
<
Item
=
bool
>,
extra
:
&
str
)
{
println
!(
"{}"
,
extra
);
}
fn
main
()
{
print_x
(
X
);
//~^ ERROR E0061
}