blob: c97fa9972ef01306eaa4206b628da9772e2c5127 [file] [log] [blame]
error: precise capturing lists may not be parenthesized
--> $DIR/parenthesized.rs:4:24
|
LL | fn f() -> impl Sized + (use<>) {}
| ^^^^^^^
|
help: remove the parentheses
|
LL - fn f() -> impl Sized + (use<>) {}
LL + fn f() -> impl Sized + use<> {}
|
error: aborting due to 1 previous error