2021-06-27 01:22:46 -05:00
|
|
|
// edition:2021
|
2020-10-12 19:16:02 -05:00
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
|
|
|
|
// Ensure that capture analysis results in arrays being completely captured.
|
|
|
|
fn main() {
|
|
|
|
let mut m = [1, 2, 3, 4, 5];
|
|
|
|
|
|
|
|
let mut c = #[rustc_capture_analysis]
|
|
|
|
//~^ ERROR: attributes on expressions are experimental
|
2020-11-13 00:51:19 -06:00
|
|
|
//~| NOTE: see issue #15701 <https://github.com/rust-lang/rust/issues/15701>
|
2020-10-12 19:16:02 -05:00
|
|
|
|| {
|
2020-11-13 00:51:19 -06:00
|
|
|
//~^ ERROR: First Pass analysis includes:
|
|
|
|
//~| ERROR: Min Capture analysis includes:
|
2020-10-12 19:16:02 -05:00
|
|
|
m[0] += 10;
|
2020-11-13 00:51:19 -06:00
|
|
|
//~^ NOTE: Capturing m[] -> MutBorrow
|
|
|
|
//~| NOTE: Min Capture m[] -> MutBorrow
|
2020-10-12 19:16:02 -05:00
|
|
|
m[1] += 40;
|
2021-10-13 16:14:37 -05:00
|
|
|
//~^ NOTE: Capturing m[] -> MutBorrow
|
2020-10-12 19:16:02 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
c();
|
|
|
|
}
|