]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issue-28837.rs
Auto merge of #50665 - alexcrichton:fix-single-item-path-warnings, r=oli-obk
[rust.git] / src / test / ui / issue-28837.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 struct A;
12
13 fn main() {
14     let a = A;
15
16     a + a; //~ ERROR binary operation `+` cannot be applied to type `A`
17
18     a - a; //~ ERROR binary operation `-` cannot be applied to type `A`
19
20     a * a; //~ ERROR binary operation `*` cannot be applied to type `A`
21
22     a / a; //~ ERROR binary operation `/` cannot be applied to type `A`
23
24     a % a; //~ ERROR binary operation `%` cannot be applied to type `A`
25
26     a & a; //~ ERROR binary operation `&` cannot be applied to type `A`
27
28     a | a; //~ ERROR binary operation `|` cannot be applied to type `A`
29
30     a << a; //~ ERROR binary operation `<<` cannot be applied to type `A`
31
32     a >> a; //~ ERROR binary operation `>>` cannot be applied to type `A`
33
34     a == a; //~ ERROR binary operation `==` cannot be applied to type `A`
35
36     a != a; //~ ERROR binary operation `!=` cannot be applied to type `A`
37
38     a < a; //~ ERROR binary operation `<` cannot be applied to type `A`
39
40     a <= a; //~ ERROR binary operation `<=` cannot be applied to type `A`
41
42     a > a; //~ ERROR binary operation `>` cannot be applied to type `A`
43
44     a >= a; //~ ERROR binary operation `>=` cannot be applied to type `A`
45 }