mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 10:16:53 +00:00
15 lines
331 B
Plaintext
15 lines
331 B
Plaintext
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
|
|
|