1 2 3 4 5 6 7 8 9 10 11
//! The most basic test possible. use structconf::StructConf; #[allow(dead_code)] #[derive(StructConf)] struct Config { nothing: bool, } fn main() {}