rust/tests/ui/traits/next-solver/normalize-async-closure-in-trait.rs

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

10 lines
116 B
Rust
Raw Normal View History

2023-12-14 06:11:28 -06:00
//@ compile-flags: -Znext-solver
//@ check-pass
//@ edition:2021
trait Foo {
async fn bar() {}
}
fn main() {}