2017-12-16 16:53:11 -06:00
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/bad-assoc-expr.rs:3:5
|
2017-12-16 16:53:11 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | [i32; 4]::clone(&a);
|
2017-12-16 16:53:11 -06:00
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `<[i32; 4]>::clone`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/bad-assoc-expr.rs:6:5
|
2017-12-16 16:53:11 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | [i32]::as_ref(&a);
|
2017-12-16 16:53:11 -06:00
|
|
|
| ^^^^^^^^^^^^^ help: try: `<[i32]>::as_ref`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/bad-assoc-expr.rs:9:5
|
2017-12-16 16:53:11 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | (u8)::clone(&0);
|
2017-12-16 16:53:11 -06:00
|
|
|
| ^^^^^^^^^^^ help: try: `<(u8)>::clone`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/bad-assoc-expr.rs:12:5
|
2017-12-16 16:53:11 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | (u8, u8)::clone(&(0, 0));
|
2017-12-16 16:53:11 -06:00
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `<(u8, u8)>::clone`
|
|
|
|
|
2017-12-18 14:42:58 -06:00
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/bad-assoc-expr.rs:15:6
|
2017-12-18 14:42:58 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | &(u8)::clone(&0);
|
2017-12-18 14:42:58 -06:00
|
|
|
| ^^^^^^^^^^^ help: try: `<(u8)>::clone`
|
|
|
|
|
|
|
|
error: missing angle brackets in associated item path
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/bad-assoc-expr.rs:18:10
|
2017-12-18 14:42:58 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | 10 + (u8)::clone(&0);
|
2017-12-18 14:42:58 -06:00
|
|
|
| ^^^^^^^^^^^ help: try: `<(u8)>::clone`
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2017-12-16 16:53:11 -06:00
|
|
|
|