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
This adds a missing OuterAttribute for macro invocations used in
statement position. That is, something like the following is valid
and compiles successfully.
```rust
macro_rules! m {
() => {
compile_error!("poof");
};
}
fn main() {
#[cfg(false)] m!();
}
```
0 commit comments