Skip to content

Commit f22469e

Browse files
authoredJul 31, 2024
Unrolled build for rust-lang#128412
Rollup merge of rust-lang#128412 - compiler-errors:crate-level-only, r=cjgillot Remove `crate_level_only` from `ELIDED_LIFETIMES_IN_PATHS` As far as I can tell, we provide the right node id to the `ELIDED_LIFETIMES_IN_PATHS` lint: https://github.com/rust-lang/rust/blob/f8060d282d42770fadd73905e3eefb85660d3278/compiler/rustc_resolve/src/late.rs#L2015-L2027 So I've gone ahead and removed the restriction from this lint.
2 parents 0b5eb7b + e657773 commit f22469e

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed
 

‎compiler/rustc_lint_defs/src/builtin.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1834,8 +1834,7 @@ declare_lint! {
18341834
/// [placeholder lifetime]: https://doc.rust-lang.org/reference/lifetime-elision.html#lifetime-elision-in-functions
18351835
pub ELIDED_LIFETIMES_IN_PATHS,
18361836
Allow,
1837-
"hidden lifetime parameters in types are deprecated",
1838-
crate_level_only
1837+
"hidden lifetime parameters in types are deprecated"
18391838
}
18401839

18411840
declare_lint! {
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
struct Foo<'a>(&'a ());
2+
3+
fn test(_: Foo) {}
4+
5+
#[deny(elided_lifetimes_in_paths)]
6+
mod w {
7+
fn test2(_: super::Foo) {}
8+
//~^ ERROR hidden lifetime parameters in types are deprecated
9+
}
10+
11+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
error: hidden lifetime parameters in types are deprecated
2+
--> $DIR/elided-lint-in-mod.rs:7:24
3+
|
4+
LL | fn test2(_: super::Foo) {}
5+
| -------^^^
6+
| |
7+
| expected lifetime parameter
8+
|
9+
note: the lint level is defined here
10+
--> $DIR/elided-lint-in-mod.rs:5:8
11+
|
12+
LL | #[deny(elided_lifetimes_in_paths)]
13+
| ^^^^^^^^^^^^^^^^^^^^^^^^^
14+
help: indicate the anonymous lifetime
15+
|
16+
LL | fn test2(_: super::Foo<'_>) {}
17+
| ++++
18+
19+
error: aborting due to 1 previous error
20+

0 commit comments

Comments
 (0)