rust/tests/ui/print_type_sizes/variants.rs

19 lines
450 B
Rust

//@ compile-flags: -Z print-type-sizes --crate-type=lib
//@ build-pass
// This file illustrates two things:
//
// 1. Only types that appear in a monomorphized function appear in the
// print-type-sizes output, and
//
// 2. For an enum, the print-type-sizes output will also include the
// size of each variant.
pub struct SevenBytes([u8; 7]);
pub struct FiftyBytes([u8; 50]);
pub enum Enum {
Small(SevenBytes),
Large(FiftyBytes),
}