//! Compile-time contract proving `LocalizedParse` is not available to types
//! that do not implement `clap::Parser`.
useortho_config::{LocalizedParse, NoOpLocalizer};structNotAParser;fnmain(){let localizer =NoOpLocalizer::new();let _parsed =NotAParser::try_parse_localized_from(["demo"],&localizer);}