]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-16019.rs
Rollup merge of #107769 - compiler-errors:pointer-like, r=eholk
[rust.git] / tests / rustdoc / issue-16019.rs
1 macro_rules! define_struct {
2     ($rounds:expr) => (
3         struct Struct {
4             sk: [u32; $rounds + 1]
5         }
6         )
7 }
8
9 define_struct!(2);