Edition 2021 for tests
This commit is contained in:
parent
23c0334fd3
commit
32fa96486a
4 changed files with 8 additions and 35 deletions
|
@ -1,7 +1,4 @@
|
|||
#![feature(capture_disjoint_fields)]
|
||||
//~^ 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>
|
||||
// edition:2021
|
||||
|
||||
#![feature(rustc_attrs)]
|
||||
#![allow(unused)]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
error[E0658]: attributes on expressions are experimental
|
||||
--> $DIR/edge_case.rs:23:13
|
||||
--> $DIR/edge_case.rs:20:13
|
||||
|
|
||||
LL | let c = #[rustc_capture_analysis] || drop(&m.a.0);
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
@ -7,39 +7,30 @@ LL | let c = #[rustc_capture_analysis] || drop(&m.a.0);
|
|||
= note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
|
||||
= help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
|
||||
|
||||
warning: the feature `capture_disjoint_fields` is incomplete and may not be safe to use and/or cause compiler crashes
|
||||
--> $DIR/edge_case.rs:1:12
|
||||
|
|
||||
LL | #![feature(capture_disjoint_fields)]
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
||||
= note: `#[warn(incomplete_features)]` on by default
|
||||
= note: see issue #53488 <https://github.com/rust-lang/rust/issues/53488> for more information
|
||||
|
||||
error: First Pass analysis includes:
|
||||
--> $DIR/edge_case.rs:23:39
|
||||
--> $DIR/edge_case.rs:20:39
|
||||
|
|
||||
LL | let c = #[rustc_capture_analysis] || drop(&m.a.0);
|
||||
| ^^^^^^^^^^^^^^^
|
||||
|
|
||||
note: Capturing m[Deref,(0, 0),Deref] -> ImmBorrow
|
||||
--> $DIR/edge_case.rs:23:48
|
||||
--> $DIR/edge_case.rs:20:48
|
||||
|
|
||||
LL | let c = #[rustc_capture_analysis] || drop(&m.a.0);
|
||||
| ^^^^^
|
||||
|
||||
error: Min Capture analysis includes:
|
||||
--> $DIR/edge_case.rs:23:39
|
||||
--> $DIR/edge_case.rs:20:39
|
||||
|
|
||||
LL | let c = #[rustc_capture_analysis] || drop(&m.a.0);
|
||||
| ^^^^^^^^^^^^^^^
|
||||
|
|
||||
note: Min Capture m[Deref,(0, 0),Deref] -> ImmBorrow
|
||||
--> $DIR/edge_case.rs:23:48
|
||||
--> $DIR/edge_case.rs:20:48
|
||||
|
|
||||
LL | let c = #[rustc_capture_analysis] || drop(&m.a.0);
|
||||
| ^^^^^
|
||||
|
||||
error: aborting due to 3 previous errors; 1 warning emitted
|
||||
error: aborting due to 3 previous errors
|
||||
|
||||
For more information about this error, try `rustc --explain E0658`.
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
#![feature(capture_disjoint_fields)]
|
||||
//~^ 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>
|
||||
|
||||
// edition:2021
|
||||
// run-pass
|
||||
|
||||
#![allow(unused)]
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
warning: the feature `capture_disjoint_fields` is incomplete and may not be safe to use and/or cause compiler crashes
|
||||
--> $DIR/edge_case_run_pass.rs:1:12
|
||||
|
|
||||
LL | #![feature(capture_disjoint_fields)]
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
||||
= note: `#[warn(incomplete_features)]` on by default
|
||||
= note: see issue #53488 <https://github.com/rust-lang/rust/issues/53488> for more information
|
||||
|
||||
warning: 1 warning emitted
|
||||
|
Loading…
Add table
Reference in a new issue