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

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

21 lines
596 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() {}