mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 04:08:40 +00:00
17 lines
234 B
Rust
17 lines
234 B
Rust
![]() |
use std::fmt::Display;
|
||
|
|
||
|
trait Foo {
|
||
|
fn bar(&self) -> impl Display;
|
||
|
}
|
||
|
|
||
|
impl Foo for () {
|
||
|
fn bar(&self) -> impl Display {
|
||
|
"Hello, world"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let x: &str = ().bar();
|
||
|
//~^ ERROR mismatched types
|
||
|
}
|