You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: an inner attribute is not permitted in this context --> src/main.rs:3:5 |3 | #![deny(missing_docs)] | ^^^^^^^^^^^^^^^^^^^^^^ | = note: inner attributes, like `#![no_std]`, annotate the item enclosing them, and are usually found at the beginning of source files. Outer attributes, like `#[test]`, annotate the item following them.
Probably what's going wrong is we are accidentally transporting the inner attributes out to outside of the corresponding item in the macro output, which is not where they are supposed to go.
The text was updated successfully, but these errors were encountered:
Probably what's going wrong is we are accidentally transporting the inner attributes out to outside of the corresponding item in the macro output, which is not where they are supposed to go.
The text was updated successfully, but these errors were encountered: