]> git.lizzy.rs Git - rust.git/blob - src/test/ui/anon-params-denied-2018.rs
Add/update tests for 2015, 2018, rustfix
[rust.git] / src / test / ui / anon-params-denied-2018.rs
1 // Test that anonymous parameters are disallowed in 2018 edition.
2
3 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13 // Tests that anonymous parameters are a hard error in edition 2018.
14
15 // edition:2018
16
17 trait T {
18     fn foo(i32); //~ expected one of `:` or `@`, found `)`
19
20     fn bar_with_default_impl(String, String) {}
21     //~^ ERROR expected one of `:` or `@`, found `,`
22 }
23
24 fn main() {}