]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issue-22644.stderr
New upstream version 1.23.0+dfsg1
[rustc.git] / src / test / ui / issue-22644.stderr
1 error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
2 --> $DIR/issue-22644.rs:16:31
3 |
4 16 | println!("{}", a as usize < long_name);
5 | ---------- ^ --------- interpreted as generic arguments
6 | | |
7 | | not interpreted as comparison
8 | help: try comparing the casted value: `(a as usize)`
9
10 error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
11 --> $DIR/issue-22644.rs:17:33
12 |
13 17 | println!("{}{}", a as usize < long_name, long_name);
14 | ---------- ^ -------------------- interpreted as generic arguments
15 | | |
16 | | not interpreted as comparison
17 | help: try comparing the casted value: `(a as usize)`
18
19 error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
20 --> $DIR/issue-22644.rs:18:31
21 |
22 18 | println!("{}", a as usize < 4);
23 | ---------- ^ - interpreted as generic arguments
24 | | |
25 | | not interpreted as comparison
26 | help: try comparing the casted value: `(a as usize)`
27
28 error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
29 --> $DIR/issue-22644.rs:20:31
30 |
31 20 | println!("{}{}", a: usize < long_name, long_name);
32 | -------- ^ -------------------- interpreted as generic arguments
33 | | |
34 | | not interpreted as comparison
35 | help: try comparing the casted value: `(a: usize)`
36
37 error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
38 --> $DIR/issue-22644.rs:21:29
39 |
40 21 | println!("{}", a: usize < 4);
41 | -------- ^ - interpreted as generic arguments
42 | | |
43 | | not interpreted as comparison
44 | help: try comparing the casted value: `(a: usize)`
45
46 error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
47 --> $DIR/issue-22644.rs:26:20
48 |
49 26 | <
50 | ^ not interpreted as comparison
51 27 | 4);
52 | - interpreted as generic arguments
53 help: try comparing the casted value
54 |
55 23 | println!("{}", (a
56 24 | as
57 25 | usize)
58 |
59
60 error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
61 --> $DIR/issue-22644.rs:35:20
62 |
63 35 | <
64 | ^ not interpreted as comparison
65 36 | 5);
66 | - interpreted as generic arguments
67 help: try comparing the casted value
68 |
69 28 | println!("{}", (a
70 29 |
71 30 |
72 31 | as
73 32 |
74 33 |
75 ...
76
77 error: `<` is interpreted as a start of generic arguments for `usize`, not a shift
78 --> $DIR/issue-22644.rs:38:31
79 |
80 38 | println!("{}", a as usize << long_name);
81 | ---------- ^^ --------- interpreted as generic arguments
82 | | |
83 | | not interpreted as shift
84 | help: try shifting the casted value: `(a as usize)`
85
86 error: expected type, found `4`
87 --> $DIR/issue-22644.rs:40:28
88 |
89 40 | println!("{}", a: &mut 4);
90 | ^ expecting a type here because of type ascription
91