summaryrefslogtreecommitdiffstats
path: root/tests/ui/span/drop-location-span-error-rust-2021-incompatible-closure-captures-93117.rs
blob: f20024e759aa376acde69ac37f513d828f36b4f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// compile-flags: -Wrust-2021-incompatible-closure-captures

pub struct A {}

impl A {
    async fn create(path: impl AsRef<std::path::Path>)  {
    ;
    crate(move || {} ).await
    }
}

trait C{async fn new(val: T) {}  //~ ERROR this file contains an unclosed delimiter