Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
in-trait
/
dont-project-to-rpitit-with-no-value.rs
blob: fe0f011b6b066519ffd3a348c7438cfd039d24fe [
file
] [
log
] [
blame
] [
edit
]
trait
MyTrait
{
fn
foo
(&
self
)
->
impl
Sized
;
fn
bar
(&
self
)
->
impl
Sized
;
}
impl
MyTrait
for
i32
{
//~^ ERROR not all trait items implemented, missing: `foo`
fn
bar
(&
self
)
->
impl
Sized
{
self
.
foo
()
}
}
fn
main
()
{}