39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
error: missing angle brackets in associated item path
|
|
--> $DIR/bad-assoc-expr.rs:3:5
|
|
|
|
|
LL | [i32; 4]::clone(&a);
|
|
| ^^^^^^^^^^^^^^^ help: try: `<[i32; 4]>::clone`
|
|
|
|
error: missing angle brackets in associated item path
|
|
--> $DIR/bad-assoc-expr.rs:6:5
|
|
|
|
|
LL | [i32]::as_ref(&a);
|
|
| ^^^^^^^^^^^^^ help: try: `<[i32]>::as_ref`
|
|
|
|
error: missing angle brackets in associated item path
|
|
--> $DIR/bad-assoc-expr.rs:9:5
|
|
|
|
|
LL | (u8)::clone(&0);
|
|
| ^^^^^^^^^^^ help: try: `<(u8)>::clone`
|
|
|
|
error: missing angle brackets in associated item path
|
|
--> $DIR/bad-assoc-expr.rs:12:5
|
|
|
|
|
LL | (u8, u8)::clone(&(0, 0));
|
|
| ^^^^^^^^^^^^^^^ help: try: `<(u8, u8)>::clone`
|
|
|
|
error: missing angle brackets in associated item path
|
|
--> $DIR/bad-assoc-expr.rs:15:6
|
|
|
|
|
LL | &(u8)::clone(&0);
|
|
| ^^^^^^^^^^^ help: try: `<(u8)>::clone`
|
|
|
|
error: missing angle brackets in associated item path
|
|
--> $DIR/bad-assoc-expr.rs:18:10
|
|
|
|
|
LL | 10 + (u8)::clone(&0);
|
|
| ^^^^^^^^^^^ help: try: `<(u8)>::clone`
|
|
|
|
error: aborting due to 6 previous errors
|
|
|