2018-08-22 15:07:27 -05:00
|
|
|
#![warn(anonymous_parameters)]
|
2017-05-02 04:38:46 +02:00
|
|
|
// Test for the anonymous_parameters deprecation lint (RFC 1685)
|
|
|
|
|
2020-04-19 17:27:28 -07:00
|
|
|
//@ check-pass
|
2018-08-22 15:07:27 -05:00
|
|
|
//@ edition:2015
|
|
|
|
//@ run-rustfix
|
|
|
|
|
2024-02-07 10:42:01 +08:00
|
|
|
#[allow(dead_code)]
|
2017-05-02 04:38:46 +02:00
|
|
|
trait T {
|
2018-08-22 15:07:27 -05:00
|
|
|
fn foo(i32); //~ WARNING anonymous parameters are deprecated
|
2021-06-16 14:27:44 +02:00
|
|
|
//~| WARNING this is accepted in the current edition
|
2017-05-02 04:38:46 +02:00
|
|
|
|
|
|
|
fn bar_with_default_impl(String, String) {}
|
2018-08-22 15:07:27 -05:00
|
|
|
//~^ WARNING anonymous parameters are deprecated
|
2021-06-16 14:27:44 +02:00
|
|
|
//~| WARNING this is accepted in the current edition
|
2018-08-22 15:07:27 -05:00
|
|
|
//~| WARNING anonymous parameters are deprecated
|
2021-06-16 14:27:44 +02:00
|
|
|
//~| WARNING this is accepted in the current edition
|
2017-05-02 04:38:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|