rust/tests/ui/impl-trait/in-trait/default-body.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
290 B
Rust
Raw Normal View History

// check-pass
// edition:2021
2022-10-04 23:16:05 -05:00
#![feature(async_fn_in_trait, return_position_impl_trait_in_trait)]
#![allow(incomplete_features)]
use std::fmt::Debug;
trait Foo {
2022-10-04 23:16:05 -05:00
async fn baz(&self) -> &str {
""
}
}
2022-10-04 23:16:05 -05:00
struct Bar;
impl Foo for Bar {}
fn main() {
let _ = Bar.baz();
}