summaryrefslogtreecommitdiffstats
path: root/tests/ui/span/drop-location-span-error-rust-2021-incompatible-closure-captures-96258.rs
blob: a9d678c1e6aff244d2e8f43ca555838630411e73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![warn(rust_2021_incompatible_closure_captures)]

fn main() {}

pub(crate) struct Numberer {}

impl Numberer {
    pub(crate) async fn new(
    //~^ ERROR `async fn` is not permitted in Rust 2015
        interval: Duration,
        //~^ ERROR cannot find type `Duration` in this scope
    ) -> Numberer { //~WARN: changes to closure capture in Rust 2021
        Numberer {}
    }
}