rust/src/test/ui/parser/trait-object-bad-parens.rs
Esteban Küber d6ea6b972d fix tidy
2019-05-31 13:50:04 -07:00

16 lines
547 B
Rust

#![feature(optin_builtin_traits)]
#![allow(bare_trait_objects)]
auto trait Auto {}
fn main() {
let _: Box<((Auto)) + Auto>;
//~^ ERROR expected a path on the left-hand side of `+`, not `((Auto))`
let _: Box<(Auto + Auto) + Auto>;
//~^ ERROR expected a path on the left-hand side of `+`, not `(Auto + Auto)`
let _: Box<(Auto +) + Auto>;
//~^ ERROR expected a path on the left-hand side of `+`, not `(Auto)`
let _: Box<(dyn Auto) + Auto>;
//~^ ERROR expected a path on the left-hand side of `+`, not `(dyn Auto)`
}