2021-06-27 06:22:46 +00:00
|
|
|
// edition:2021
|
2020-10-13 00:16:02 +00: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 06:51:19 +00:00
|
|
|
//~| NOTE: see issue #15701 <https://github.com/rust-lang/rust/issues/15701>
|
2020-10-13 00:16:02 +00:00
|
|
|
|| {
|
2020-11-13 06:51:19 +00:00
|
|
|
//~^ ERROR: First Pass analysis includes:
|
|
|
|
//~| ERROR: Min Capture analysis includes:
|
2020-10-13 00:16:02 +00:00
|
|
|
m[0] += 10;
|
2020-11-13 06:51:19 +00:00
|
|
|
//~^ NOTE: Capturing m[] -> MutBorrow
|
|
|
|
//~| NOTE: Min Capture m[] -> MutBorrow
|
2020-10-13 00:16:02 +00:00
|
|
|
m[1] += 40;
|
2021-10-13 21:14:37 +00:00
|
|
|
//~^ NOTE: Capturing m[] -> MutBorrow
|
2020-10-13 00:16:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
c();
|
|
|
|
}
|