rust/src/test/ui/anon-params-denied-2018.rs

13 lines
274 B
Rust
Raw Normal View History

// Tests that anonymous parameters are a hard error in edition 2018.
2018-08-22 14:08:29 -05:00
// edition:2018
trait T {
fn foo(i32); //~ expected one of `:` or `@`, found `)`
2018-08-22 14:08:29 -05:00
fn bar_with_default_impl(String, String) {}
//~^ ERROR expected one of `:` or `@`, found `,`
2018-08-22 14:08:29 -05:00
}
fn main() {}