rust/tests/codegen/debug-accessibility/public-enum.rs

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

24 lines
627 B
Rust
Raw Normal View History

// ignore-tidy-linelength
//! Checks that visibility information is present in the debuginfo for types and their fields.
//@ revisions: MSVC NONMSVC
//@[MSVC] only-msvc
//@[NONMSVC] ignore-msvc
//@ compile-flags: -C debuginfo=2
use std::hint::black_box;
pub enum PublicFooEnum {
A,
B(u32),
C { x: u32 },
}
// NONMSVC: {{!.*}} = !DICompositeType(tag: DW_TAG_structure_type, name: "PublicFooEnum"{{.*}}flags: DIFlagPublic{{.*}})
// MSVC: {{!.*}} = !DICompositeType(tag: DW_TAG_union_type, name: "enum2$<public_enum::PublicFooEnum>"{{.*}}flags: DIFlagPublic{{.*}})
fn main() {
black_box(PublicFooEnum::A);
}