]> git.lizzy.rs Git - rust.git/blob - src/test/ui/attributes/unnamed-field-attributes.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / attributes / unnamed-field-attributes.rs
1 // check-pass
2
3 struct S(
4     #[rustfmt::skip] u8,
5     u16,
6     #[rustfmt::skip] u32,
7 );
8
9 fn main() {}