summary refs log tree commit diff
path: root/src/test/ui/anon-params-deprecated.rs
blob: 74de0c0b83407492b1b2840660a1d8a23d27537a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![warn(anonymous_parameters)]
// Test for the anonymous_parameters deprecation lint (RFC 1685)

// compile-pass
// edition:2015
// run-rustfix

trait T {
    fn foo(i32); //~ WARNING anonymous parameters are deprecated
                 //~| WARNING hard error

    fn bar_with_default_impl(String, String) {}
    //~^ WARNING anonymous parameters are deprecated
    //~| WARNING hard error
    //~| WARNING anonymous parameters are deprecated
    //~| WARNING hard error
}

fn main() {}