error: the `drive_v3` attribute requires a path help: consider using: `#[drive_v3(parameter)]` --> tests/ui/derive_macro/invalid_args.rs:6:16 | 6 | #[drive_v3(parameter=true)] | ^^^^^^^^^^^^^^ error: the `drive_v3` attribute requires a path help: consider using: `#[drive_v3(body)]` --> tests/ui/derive_macro/invalid_args.rs:13:16 | 13 | #[drive_v3(body(1, 2))] | ^^^^^^^^^^ error: the `drive_v3` attribute requires a path help: consider using the value: `#[drive_v3("test")]` --> tests/ui/derive_macro/invalid_args.rs:20:7 | 20 | #[drive_v3="test"] | ^^^^^^^^^^^^^^^ error: the `drive_v3` attribute requires a list help: consider giving the attribute an argument `#[drive_v3(parameter)]` --> tests/ui/derive_macro/invalid_args.rs:27:7 | 27 | #[drive_v3] | ^^^^^^^^ error: the `drive_v3` attribute requires a single path help: consider using only one of the arguments: `#[drive_v3(parameter)]` --> tests/ui/derive_macro/invalid_args.rs:34:7 | 34 | #[drive_v3(parameter, body)] | ^^^^^^^^^^^^^^^^^^^^^^^^^