summaryrefslogtreecommitdiffstats
path: root/tests/ui/did_you_mean/bad-assoc-expr.stderr
blob: b83078e21b6a1f6340191abcebe8a14ab543076e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
error: missing angle brackets in associated item path
  --> $DIR/bad-assoc-expr.rs:3:5
   |
LL |     [i32; 4]::clone(&a);
   |     ^^^^^^^^
   |
help: types that don't start with an identifier need to be surrounded with angle brackets in qualified paths
   |
LL |     <[i32; 4]>::clone(&a);
   |     +        +

error: missing angle brackets in associated item path
  --> $DIR/bad-assoc-expr.rs:6:5
   |
LL |     [i32]::as_ref(&a);
   |     ^^^^^
   |
help: types that don't start with an identifier need to be surrounded with angle brackets in qualified paths
   |
LL |     <[i32]>::as_ref(&a);
   |     +     +

error: missing angle brackets in associated item path
  --> $DIR/bad-assoc-expr.rs:9:5
   |
LL |     (u8)::clone(&0);
   |     ^^^^
   |
help: types that don't start with an identifier need to be surrounded with angle brackets in qualified paths
   |
LL |     <(u8)>::clone(&0);
   |     +    +

error: missing angle brackets in associated item path
  --> $DIR/bad-assoc-expr.rs:12:5
   |
LL |     (u8, u8)::clone(&(0, 0));
   |     ^^^^^^^^
   |
help: types that don't start with an identifier need to be surrounded with angle brackets in qualified paths
   |
LL |     <(u8, u8)>::clone(&(0, 0));
   |     +        +

error: missing angle brackets in associated item path
  --> $DIR/bad-assoc-expr.rs:15:6
   |
LL |     &(u8)::clone(&0);
   |      ^^^^
   |
help: types that don't start with an identifier need to be surrounded with angle brackets in qualified paths
   |
LL |     &<(u8)>::clone(&0);
   |      +    +

error: missing angle brackets in associated item path
  --> $DIR/bad-assoc-expr.rs:18:10
   |
LL |     10 + (u8)::clone(&0);
   |          ^^^^
   |
help: types that don't start with an identifier need to be surrounded with angle brackets in qualified paths
   |
LL |     10 + <(u8)>::clone(&0);
   |          +    +

error: missing angle brackets in associated item path
  --> $DIR/bad-assoc-expr.rs:32:13
   |
LL |     let _ = ty!()::clone(&0);
   |             ^^^^^
   |
help: types that don't start with an identifier need to be surrounded with angle brackets in qualified paths
   |
LL |     let _ = <ty!()>::clone(&0);
   |             +     +

error: missing angle brackets in associated item path
  --> $DIR/bad-assoc-expr.rs:34:5
   |
LL |     ty!()::clone(&0);
   |     ^^^^^
   |
help: types that don't start with an identifier need to be surrounded with angle brackets in qualified paths
   |
LL |     <ty!()>::clone(&0);
   |     +     +

error: missing angle brackets in associated item path
  --> $DIR/bad-assoc-expr.rs:23:19
   |
LL |     ($ty: ty) => ($ty::clone(&0))
   |                   ^^^
...
LL |     expr!(u8);
   |     --------- in this macro invocation
   |
   = note: this error originates in the macro `expr` (in Nightly builds, run with -Z macro-backtrace for more info)
help: types that don't start with an identifier need to be surrounded with angle brackets in qualified paths
   |
LL |     ($ty: ty) => (<$ty>::clone(&0))
   |                   +   +

error: aborting due to 9 previous errors