rust/tests/ui/impl-trait/in-trait/opaque-in-impl-is-opaque.rs
2023-10-13 21:01:36 +00:00

19 lines
266 B
Rust

#![allow(incomplete_features)]
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
}