rust/tests/ui/anon-params/anon-params-deprecated.fixed

21 lines
605 B
Rust
Raw Normal View History

#![warn(anonymous_parameters)]
// Test for the anonymous_parameters deprecation lint (RFC 1685)
//@ check-pass
//@ edition:2015
//@ run-rustfix
2024-02-07 02:42:01 +00:00
#[allow(dead_code)]
trait T {
fn foo(_: i32); //~ WARNING anonymous parameters are deprecated
2021-06-16 12:27:44 +00:00
//~| WARNING this is accepted in the current edition
fn bar_with_default_impl(_: String, _: String) {}
//~^ WARNING anonymous parameters are deprecated
2021-06-16 12:27:44 +00:00
//~| WARNING this is accepted in the current edition
//~| WARNING anonymous parameters are deprecated
2021-06-16 12:27:44 +00:00
//~| WARNING this is accepted in the current edition
}
fn main() {}