Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support customization of fields on derive #129

Merged
merged 13 commits into from
Oct 20, 2022
Merged
6 changes: 2 additions & 4 deletions tests/ui/multiple_arbitrary.stderr
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
error: Multiple conflicting #[arbitrary] attributes found on field `x`
--> tests/ui/multiple_arbitrary.rs:5:5
|
5 | / #[arbitrary(value = 2)]
6 | | #[arbitrary(value = 3)]
7 | | x: i32,
| |__________^
5 | #[arbitrary(value = 2)]
| ^
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this mean that the tests won't pass on both nightly and stable at the same time right now?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's correct. I got one tests broken on CI, because I was running nightly locally, but CI was running stable.

OK, i'll change it to doc tests then.