Steve Schneider
Results
1
issues of
Steve Schneider
I extended the **3_inject_options_list.rs** example to implement **Interface4** from crate **test_def**. ```rust use test_def::Interface4; #[provides] impl Interface4 for Comp { fn int4(&self) { println!("Interface 4"); } } ``` I get...