Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-21950.rs
blob: 72a98bd8ddd8a7ba9f9aefc8cbc86b4e82102e63 [
file
] [
log
] [
blame
] [
edit
]
trait
Add
<
Rhs
=
Self
>
{
type
Output
;
}
impl
Add
for
i32
{
type
Output
=
i32
;
}
fn
main
()
{
let
x
=
&
10
as
&
dyn
Add
;
//~^ ERROR E0393
//~| ERROR E0191
}