iota icon indicating copy to clipboard operation
iota copied to clipboard

Support pub(restricted) visibilities

Open dtolnay opened this issue 5 years ago • 0 comments

iota! {
    pub(crate) const A: u8 = 1 << iota;
        | B
        | C
}
error: no rules expected the token `(`
 --> src/main.rs:4:8
  |
4 |     pub(crate) const A: u8 = 1 << iota;
  |        ^ no rules expected this token in macro call

dtolnay avatar Dec 26 '19 02:12 dtolnay