Skip to content

Commit 803772e

Browse files
Enable new capture rules by default on edition 2024
1 parent acba7ef commit 803772e

File tree

5 files changed

+40
-9
lines changed

5 files changed

+40
-9
lines changed

compiler/rustc_ast_lowering/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1575,6 +1575,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
15751575
fn_kind.expect("expected RPITs to be lowered with a FnKind"),
15761576
FnDeclKind::Impl | FnDeclKind::Trait
15771577
) || self.tcx.features().lifetime_capture_rules_2024
1578+
|| span.at_least_rust_2024()
15781579
{
15791580
// return-position impl trait in trait was decided to capture all
15801581
// in-scope lifetimes, which we collect for all opaques during resolution.
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
error: [*, o]
2+
--> $DIR/variance.rs:14:36
3+
|
4+
LL | fn not_captured_early<'a: 'a>() -> impl Sized {}
5+
| ^^^^^^^^^^
6+
7+
error: [*, o]
8+
--> $DIR/variance.rs:19:32
9+
|
10+
LL | fn captured_early<'a: 'a>() -> impl Sized + Captures<'a> {}
11+
| ^^^^^^^^^^^^^^^^^^^^^^^^^
12+
13+
error: [o]
14+
--> $DIR/variance.rs:21:40
15+
|
16+
LL | fn not_captured_late<'a>(_: &'a ()) -> impl Sized {}
17+
| ^^^^^^^^^^
18+
19+
error: [o]
20+
--> $DIR/variance.rs:26:36
21+
|
22+
LL | fn captured_late<'a>(_: &'a ()) -> impl Sized + Captures<'a> {}
23+
| ^^^^^^^^^^^^^^^^^^^^^^^^^
24+
25+
error: aborting due to 4 previous errors
26+

tests/ui/impl-trait/variance.new.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
error: [*, o]
2-
--> $DIR/variance.rs:12:36
2+
--> $DIR/variance.rs:14:36
33
|
44
LL | fn not_captured_early<'a: 'a>() -> impl Sized {}
55
| ^^^^^^^^^^
66

77
error: [*, o]
8-
--> $DIR/variance.rs:16:32
8+
--> $DIR/variance.rs:19:32
99
|
1010
LL | fn captured_early<'a: 'a>() -> impl Sized + Captures<'a> {}
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^
1212

1313
error: [o]
14-
--> $DIR/variance.rs:18:40
14+
--> $DIR/variance.rs:21:40
1515
|
1616
LL | fn not_captured_late<'a>(_: &'a ()) -> impl Sized {}
1717
| ^^^^^^^^^^
1818

1919
error: [o]
20-
--> $DIR/variance.rs:22:36
20+
--> $DIR/variance.rs:26:36
2121
|
2222
LL | fn captured_late<'a>(_: &'a ()) -> impl Sized + Captures<'a> {}
2323
| ^^^^^^^^^^^^^^^^^^^^^^^^^

tests/ui/impl-trait/variance.old.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
error: [*]
2-
--> $DIR/variance.rs:12:36
2+
--> $DIR/variance.rs:14:36
33
|
44
LL | fn not_captured_early<'a: 'a>() -> impl Sized {}
55
| ^^^^^^^^^^
66

77
error: [*, o]
8-
--> $DIR/variance.rs:16:32
8+
--> $DIR/variance.rs:19:32
99
|
1010
LL | fn captured_early<'a: 'a>() -> impl Sized + Captures<'a> {}
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^
1212

1313
error: []
14-
--> $DIR/variance.rs:18:40
14+
--> $DIR/variance.rs:21:40
1515
|
1616
LL | fn not_captured_late<'a>(_: &'a ()) -> impl Sized {}
1717
| ^^^^^^^^^^
1818

1919
error: [o]
20-
--> $DIR/variance.rs:22:36
20+
--> $DIR/variance.rs:26:36
2121
|
2222
LL | fn captured_late<'a>(_: &'a ()) -> impl Sized + Captures<'a> {}
2323
| ^^^^^^^^^^^^^^^^^^^^^^^^^

tests/ui/impl-trait/variance.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// revisions: old new
1+
// revisions: old new e2024
2+
//[e2024] edition: 2024
3+
//[e2024] compile-flags: -Z unstable-options
24

35
#![cfg_attr(new, feature(lifetime_capture_rules_2024))]
46

@@ -12,12 +14,14 @@ impl<T> Captures<'_> for T {}
1214
fn not_captured_early<'a: 'a>() -> impl Sized {}
1315
//[old]~^ [*]
1416
//[new]~^^ [*, o]
17+
//[e2024]~^^^ [*, o]
1518

1619
fn captured_early<'a: 'a>() -> impl Sized + Captures<'a> {} //~ [*, o]
1720

1821
fn not_captured_late<'a>(_: &'a ()) -> impl Sized {}
1922
//[old]~^ []
2023
//[new]~^^ [o]
24+
//[e2024]~^^^ [o]
2125

2226
fn captured_late<'a>(_: &'a ()) -> impl Sized + Captures<'a> {} //~ [o]
2327

0 commit comments

Comments
 (0)