DEBSOURCES
Skip Quicknav
sources / mozjs102 / 102.15.1-1~deb12u1 / third_party / rust / thiserror / tests / ui / union.rs
123456789
use thiserror::Error; #[derive(Error)] pub union U { msg: &'static str, num: usize, } fn main() {}