about summary refs log tree commit diff
path: root/src/test/ui/parser/trait-object-bad-parens.rs
blob: 048e028be1ca171c7df53c4fb1c6011eef19652f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![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)`
}