rust/tests/ui/impl-trait/precise-capturing/parenthesized.stderr
2025-08-16 01:21:35 +02:00

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