1
Fork 0

Turn old edition lints (anonymous-parameters, keyword-idents) into warn-by-default on 2015

This commit is contained in:
Manish Goregaokar 2021-03-08 15:43:18 -08:00
parent c18c0ad2bc
commit 664c3e71b8
14 changed files with 92 additions and 81 deletions

View file

@ -1768,6 +1768,7 @@ mod super_keyword {}
/// In the 2015 edition the parameters pattern was not needed for traits:
///
/// ```rust,edition2015
/// # #![allow(anonymous_parameters)]
/// trait Tr {
/// fn f(i32);
/// }