// Copyright (C) 2025 Leandro Lisboa Penz <lpenz@lpenz.org>
// This file is subject to the terms and conditions defined in
// file 'LICENSE', which is part of this source code package.
useenumchar::EnumChar;#[derive(EnumChar)]pubenumE{#[char('.')]
Dot,
Other,}fnmain(){println!("{}",E::Dot);}