We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The Default derive now has a helper attribute defined called default. We don't support those yet. See https://doc.rust-lang.org/src/core/default.rs.html#182
Default
default
#[rustc_builtin_macro(Default, attributes(default))] #[stable(feature = "builtin_macro_prelude", since = "1.38.0")] #[allow_internal_unstable(core_intrinsics)] pub macro Default($item:item) { /* compiler built-in */ }
we need to parse the #[rustc_builtin_macro(Default, attributes(default))] line
#[rustc_builtin_macro(Default, attributes(default))]
The text was updated successfully, but these errors were encountered:
df07c8f
Successfully merging a pull request may close this issue.
The
Default
derive now has a helper attribute defined calleddefault
. We don't support those yet.See https://doc.rust-lang.org/src/core/default.rs.html#182
we need to parse the
#[rustc_builtin_macro(Default, attributes(default))]
lineThe text was updated successfully, but these errors were encountered: