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