Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
in-trait
/
doesnt-satisfy.rs
blob: 0ac60918b67e53498e73f3453717d34adfe25d00 [
file
] [
log
] [
blame
] [
edit
]
trait
Foo
{
fn
bar
()
->
impl
std
::
fmt
::
Display
;
}
impl
Foo
for
()
{
fn
bar
()
->
()
{}
//~^ ERROR `()` doesn't implement `std::fmt::Display`
}
fn
main
()
{}