rust/src/test/ui/chalkify/bugs/async.rs

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

10 lines
150 B
Rust
Raw Normal View History

// check-fail
// known-bug: unknown
2023-01-02 23:18:00 +00:00
// compile-flags: -Z trait-solver=chalk --edition=2021
fn main() -> () {}
async fn foo(x: u32) -> u32 {
x
}