blob: 7a57b6100f3805d1887a86a3761e4e44bbf29ea4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
warning: unnecessary parentheses around `return` value
--> $DIR/path-lookahead.rs:8:10
|
LL | return (<T as ToString>::to_string(&arg));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
|
note: the lint level is defined here
--> $DIR/path-lookahead.rs:3:9
|
LL | #![warn(unused_parens)]
| ^^^^^^^^^^^^^
warning: 1 warning emitted
|