rust/tests/ui/enum/suggest-default-attribute.stderr
2023-01-11 09:32:08 +00:00

15 lines
272 B
Plaintext

error: cannot find attribute `default` in this scope
--> $DIR/suggest-default-attribute.rs:2:7
|
LL | #[default]
| ^^^^^^^
|
help: consider adding a derive
|
LL + #[derive(Default)]
LL ~ pub enum Test {
|
error: aborting due to previous error