// --------------------------------------------------------------------------- // Copyright: (c) 2021 ff. Michael Amrhein (michael@adrhinum.de) // License: This program is part of a larger application. For license // details please read the file LICENSE.TXT provided together // with the application. // --------------------------------------------------------------------------- // $Source: qty-macros/tests/ui/enum_with_content.rs $ // $Revision: 2021-12-30T12:28:48+01:00 $ use qty_macros::VariantsAsConstants; #[derive(VariantsAsConstants, Debug, PartialEq)] pub enum TestEnum { A(i32), B, } fn main() {}