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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
582 B
Rust
Raw Normal View History

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