rust/tests/ui/variants/variant-size-differences.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
149 B
Rust
Raw Normal View History

#![deny(variant_size_differences)]
enum _En {
V0(u8),
VBig([u8; 1024]), //~ ERROR variant is more than three times larger
}
fn main() {}