Skip to content

Commit eacfb2b

Browse files
committed
resolve: prohibit anon const non-static lifetimes
This commit modifies name resolution to emit an error when non-static lifetimes are used in anonymous constants when the `min_const_generics` feature is enabled. Signed-off-by: David Wood <david@davidtw.co>
1 parent 154f1f5 commit eacfb2b

File tree

4 files changed

+81
-0
lines changed

4 files changed

+81
-0
lines changed

compiler/rustc_resolve/src/late/diagnostics.rs

+29
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ use rustc_hir::def::{self, CtorKind, DefKind};
1616
use rustc_hir::def_id::{DefId, CRATE_DEF_INDEX, LOCAL_CRATE};
1717
use rustc_hir::PrimTy;
1818
use rustc_session::config::nightly_options;
19+
use rustc_session::parse::feature_err;
1920
use rustc_span::hygiene::MacroKind;
2021
use rustc_span::symbol::{kw, sym, Ident, Symbol};
2122
use rustc_span::{BytePos, Span, DUMMY_SP};
@@ -1599,4 +1600,32 @@ impl<'tcx> LifetimeContext<'_, 'tcx> {
15991600
_ => {}
16001601
}
16011602
}
1603+
1604+
/// Non-static lifetimes are prohibited in anonymous constants under `min_const_generics` so
1605+
/// this function will emit an error if `min_const_generics` is enabled, the body identified by
1606+
/// `body_id` is an anonymous constant and `lifetime_ref` is non-static.
1607+
crate fn maybe_emit_forbidden_non_static_lifetime_error(
1608+
&self,
1609+
body_id: hir::BodyId,
1610+
lifetime_ref: &'tcx hir::Lifetime,
1611+
) {
1612+
let is_anon_const = matches!(
1613+
self.tcx.def_kind(self.tcx.hir().body_owner_def_id(body_id)),
1614+
hir::def::DefKind::AnonConst
1615+
);
1616+
let is_allowed_lifetime = matches!(
1617+
lifetime_ref.name,
1618+
hir::LifetimeName::Implicit | hir::LifetimeName::Static | hir::LifetimeName::Underscore
1619+
);
1620+
1621+
if self.tcx.features().min_const_generics && is_anon_const && !is_allowed_lifetime {
1622+
feature_err(
1623+
&self.tcx.sess.parse_sess,
1624+
sym::const_generics,
1625+
lifetime_ref.span,
1626+
"a non-static lifetime is not allowed in a `const`",
1627+
)
1628+
.emit();
1629+
}
1630+
}
16021631
}

compiler/rustc_resolve/src/late/lifetimes.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1777,6 +1777,10 @@ impl<'a, 'tcx> LifetimeContext<'a, 'tcx> {
17771777
let result = loop {
17781778
match *scope {
17791779
Scope::Body { id, s } => {
1780+
// Non-static lifetimes are prohibited in anonymous constants under
1781+
// `min_const_generics`.
1782+
self.maybe_emit_forbidden_non_static_lifetime_error(id, lifetime_ref);
1783+
17801784
outermost_body = Some(id);
17811785
scope = s;
17821786
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#![feature(min_const_generics)]
2+
3+
// This test checks that non-static lifetimes are prohibited under `min_const_generics`. It
4+
// currently emits an error with `min_const_generics`. This will ICE under `const_generics`.
5+
6+
fn test<const N: usize>() {}
7+
8+
fn issue_75323_and_74447_1<'a>() -> &'a () {
9+
test::<{ let _: &'a (); 3 },>();
10+
//~^ ERROR a non-static lifetime is not allowed in a `const`
11+
&()
12+
}
13+
14+
fn issue_75323_and_74447_2() {
15+
test::<{ let _: &(); 3 },>();
16+
}
17+
18+
fn issue_75323_and_74447_3() {
19+
test::<{ let _: &'static (); 3 },>();
20+
}
21+
22+
fn issue_73375<'a>() {
23+
[(); (|_: &'a u8| (), 0).1];
24+
//~^ ERROR a non-static lifetime is not allowed in a `const`
25+
}
26+
27+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
error[E0658]: a non-static lifetime is not allowed in a `const`
2+
--> $DIR/forbid-non-static-lifetimes.rs:9:22
3+
|
4+
LL | test::<{ let _: &'a (); 3 },>();
5+
| ^^
6+
|
7+
= note: see issue #44580 <https://github.com/rust-lang/rust/issues/44580> for more information
8+
= help: add `#![feature(const_generics)]` to the crate attributes to enable
9+
10+
error[E0658]: a non-static lifetime is not allowed in a `const`
11+
--> $DIR/forbid-non-static-lifetimes.rs:23:16
12+
|
13+
LL | [(); (|_: &'a u8| (), 0).1];
14+
| ^^
15+
|
16+
= note: see issue #44580 <https://github.com/rust-lang/rust/issues/44580> for more information
17+
= help: add `#![feature(const_generics)]` to the crate attributes to enable
18+
19+
error: aborting due to 2 previous errors
20+
21+
For more information about this error, try `rustc --explain E0658`.

0 commit comments

Comments
 (0)