blob: aed8cec68e8da37b5628b08a9d7ec0a19e1e9592 [file] [log] [blame]
error: unnecessary parentheses around type
--> $DIR/unused-parens-trait-obj.rs:25:51
|
LL | pub type DynIsAContextualKeywordIn2015B = Box<dyn (::std::ops::Fn())>;
| ^ ^
|
note: the lint level is defined here
--> $DIR/unused-parens-trait-obj.rs:7:9
|
LL | #![deny(unused_parens)]
| ^^^^^^^^^^^^^
help: remove these parentheses
|
LL - pub type DynIsAContextualKeywordIn2015B = Box<dyn (::std::ops::Fn())>;
LL + pub type DynIsAContextualKeywordIn2015B = Box<dyn ::std::ops::Fn()>;
|
error: aborting due to 1 previous error