2020-10-12 20:16:02 -04:00
|
|
|
// FIXME(arora-aman) add run-pass once 2229 is implemented
|
|
|
|
|
|
|
|
#![feature(capture_disjoint_fields)]
|
2020-11-13 01:51:19 -05:00
|
|
|
//~^ WARNING: the feature `capture_disjoint_fields` is incomplete
|
|
|
|
//~| NOTE: `#[warn(incomplete_features)]` on by default
|
|
|
|
//~| NOTE: see issue #53488 <https://github.com/rust-lang/rust/issues/53488>
|
2020-10-12 20:16:02 -04:00
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
|
|
|
|
// Test to ensure that min analysis meets capture kind for all paths captured.
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
struct Point {
|
|
|
|
x: i32,
|
|
|
|
y: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut p = Point { x: 10, y: 20 };
|
|
|
|
|
|
|
|
//
|
|
|
|
// Requirements:
|
|
|
|
// p.x -> MutBoorrow
|
|
|
|
// p -> ImmBorrow
|
|
|
|
//
|
|
|
|
// Requirements met when p is captured via MutBorrow
|
|
|
|
//
|
|
|
|
let mut c = #[rustc_capture_analysis]
|
|
|
|
//~^ ERROR: attributes on expressions are experimental
|
2020-11-13 01:51:19 -05:00
|
|
|
//~| NOTE: see issue #15701 <https://github.com/rust-lang/rust/issues/15701>
|
2020-10-12 20:16:02 -04:00
|
|
|
|| {
|
2020-11-13 01:51:19 -05:00
|
|
|
//~^ ERROR: First Pass analysis includes:
|
|
|
|
//~| ERROR: Min Capture analysis includes:
|
2020-10-12 20:16:02 -04:00
|
|
|
p.x += 10;
|
2020-11-13 01:51:19 -05:00
|
|
|
//~^ NOTE: Capturing p[(0, 0)] -> MutBorrow
|
|
|
|
//~| NOTE: Min Capture p[] -> MutBorrow
|
2020-10-12 20:16:02 -04:00
|
|
|
println!("{:?}", p);
|
2020-11-13 01:51:19 -05:00
|
|
|
//~^ NOTE: Capturing p[] -> ImmBorrow
|
2020-10-12 20:16:02 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
c();
|
|
|
|
}
|