rust/src/test/ui/anon-params-denied-2018.rs
2018-08-24 15:48:00 -05:00

13 lines
274 B
Rust

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