mirror of
https://github.com/clap-rs/clap
synced 2025-01-08 10:48:45 +00:00
10 lines
358 B
Text
10 lines
358 B
Text
error[E0599]: no method named `name` found for struct `ArgGroup` in the current scope
|
|
--> tests/derive_ui/group_name_attribute.rs:11:26
|
|
|
|
|
11 | #[group(required = true, name = "src")]
|
|
| ^^^^
|
|
|
|
|
help: there is a method `ne` with a similar name
|
|
|
|
|
11 | #[group(required = true, ne = "src")]
|
|
| ~~
|