]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/regionck-unboxed-closure-lifetimes.rs
Rollup merge of #51276 - Havvy:dyn-trait-send-send, r=nikomatsakis
[rust.git] / src / test / ui / span / regionck-unboxed-closure-lifetimes.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10 #![feature(rustc_attrs)]
11 use std::ops::FnMut;
12
13 fn main() { #![rustc_error] // rust-lang/rust#49855
14     let mut f;
15     {
16         let c = 1;
17         let c_ref = &c;
18         //~^ ERROR `c` does not live long enough
19         f = move |a: isize, b: isize| { a + b + *c_ref };
20     }
21     f.use_mut();
22 }
23
24 trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { }  }
25 impl<T> Fake for T { }