Skip to content

Commit f33921b

Browse files
committed
Auto merge of #53272 - mark-i-m:anon_param_error_now, r=nikomatsakis
Warn on anon params in 2015 edition cc #41686 rust-lang/rfcs#2522 cc @Centril @nikomatsakis TODO: - [x] Make sure the tests pass. - [x] Make sure there is rustfix-able suggestion. Current plan is to just suggest `_ : Foo` - [x] Add a rustfix ui test. EDIT: It seems I already did the last two in #48309
2 parents 8c2b371 + 548f28e commit f33921b

File tree

10 files changed

+23
-18
lines changed

10 files changed

+23
-18
lines changed

src/librustc/lint/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ macro_rules! late_lint_methods {
266266

267267
macro_rules! expand_lint_pass_methods {
268268
($context:ty, [$($(#[$attr:meta])* fn $name:ident($($param:ident: $arg:ty),*);)*]) => (
269-
$(#[inline(always)] fn $name(&mut self, $context, $(_: $arg),*) {})*
269+
$(#[inline(always)] fn $name(&mut self, _: $context, $(_: $arg),*) {})*
270270
)
271271
}
272272

src/librustc_lint/builtin.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ use syntax::tokenstream::{TokenTree, TokenStream};
4646
use syntax::ast;
4747
use syntax::attr;
4848
use syntax::source_map::Spanned;
49-
use syntax::edition::Edition;
5049
use syntax::feature_gate::{AttributeGate, AttributeType, Stability, deprecated_attributes};
5150
use syntax_pos::{BytePos, Span, SyntaxContext};
5251
use syntax::symbol::keywords;
@@ -629,8 +628,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MissingDebugImplementations {
629628
declare_lint! {
630629
pub ANONYMOUS_PARAMETERS,
631630
Allow,
632-
"detects anonymous parameters",
633-
Edition::Edition2018 => Warn
631+
"detects anonymous parameters"
634632
}
635633

636634
/// Checks for use of anonymous parameters (RFC 1685)

src/librustc_lint/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) {
277277
FutureIncompatibleInfo {
278278
id: LintId::of(ANONYMOUS_PARAMETERS),
279279
reference: "issue #41686 <https://github.com/rust-lang/rust/issues/41686>",
280-
edition: None,
280+
edition: Some(Edition::Edition2018),
281281
},
282282
FutureIncompatibleInfo {
283283
id: LintId::of(PARENTHESIZED_PARAMS_IN_TYPES_AND_MODULES),

src/libstd/sys/windows/backtrace/mod.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,14 @@ type StackWalk64Fn = unsafe extern "system" fn(
152152
trait StackWalker {
153153
type Item: StackFrame;
154154

155-
fn walk(&self, c::DWORD, c::HANDLE, c::HANDLE, &mut Self::Item, &mut c::CONTEXT) -> c::BOOL;
155+
fn walk(
156+
&self,
157+
_: c::DWORD,
158+
_: c::HANDLE,
159+
_: c::HANDLE,
160+
_: &mut Self::Item,
161+
_: &mut c::CONTEXT
162+
) -> c::BOOL;
156163
}
157164

158165
impl StackWalker for StackWalkExFn {

src/test/ui/anon-params-deprecated.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ note: lint level defined here
99
|
1010
LL | #![warn(anonymous_parameters)]
1111
| ^^^^^^^^^^^^^^^^^^^^
12-
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
12+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
1313
= note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
1414

1515
warning: anonymous parameters are deprecated and will be removed in the next edition.
@@ -18,7 +18,7 @@ warning: anonymous parameters are deprecated and will be removed in the next edi
1818
LL | fn bar_with_default_impl(String, String) {}
1919
| ^^^^^^ help: Try naming the parameter or explicitly ignoring it: `_: String`
2020
|
21-
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
21+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
2222
= note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
2323

2424
warning: anonymous parameters are deprecated and will be removed in the next edition.
@@ -27,6 +27,6 @@ warning: anonymous parameters are deprecated and will be removed in the next edi
2727
LL | fn bar_with_default_impl(String, String) {}
2828
| ^^^^^^ help: Try naming the parameter or explicitly ignoring it: `_: String`
2929
|
30-
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
30+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
3131
= note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
3232

src/test/ui/chalkify/lower_trait.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313
#[rustc_dump_program_clauses] //~ ERROR program clause dump
1414
trait Foo<S, T, U> {
15-
fn s(S) -> S;
16-
fn t(T) -> T;
17-
fn u(U) -> U;
15+
fn s(_: S) -> S;
16+
fn t(_: T) -> T;
17+
fn u(_: U) -> U;
1818
}
1919

2020
fn main() {

src/test/ui/chalkify/lower_trait_higher_rank.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#[rustc_dump_program_clauses] //~ ERROR program clause dump
1414
trait Foo<F> where for<'a> F: Fn(&'a (u8, u16)) -> &'a u8
1515
{
16-
fn s(F) -> F;
16+
fn s(_: F) -> F;
1717
}
1818

1919
fn main() {

src/test/ui/chalkify/lower_trait_where_clause.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ use std::borrow::Borrow;
1515

1616
#[rustc_dump_program_clauses] //~ ERROR program clause dump
1717
trait Foo<'a, 'b, S, T, U> where S: Debug, T: Borrow<U>, U: ?Sized, 'a: 'b, U: 'b {
18-
fn s(S) -> S;
19-
fn t(T) -> T;
20-
fn u(U) -> U;
18+
fn s(_: S) -> S;
19+
fn t(_: T) -> T;
20+
fn u(_: U) -> U;
2121
}
2222

2323
fn main() {

src/test/ui/future-incompatible-lint-group.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ note: lint level defined here
1010
LL | #![deny(future_incompatible)]
1111
| ^^^^^^^^^^^^^^^^^^^
1212
= note: #[deny(anonymous_parameters)] implied by #[deny(future_incompatible)]
13-
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
13+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
1414
= note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
1515

1616
error: aborting due to previous error

src/test/ui/impl-trait/where-allowed.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ trait InTraitDefnReturn {
125125
// Allowed and disallowed in trait impls
126126
trait DummyTrait {
127127
type Out;
128-
fn in_trait_impl_parameter(impl Debug);
128+
fn in_trait_impl_parameter(_: impl Debug);
129129
fn in_trait_impl_return() -> Self::Out;
130130
}
131131
impl DummyTrait for () {

0 commit comments

Comments
 (0)