1 2 3 4 5 6 7 8 9 10
#![cfg(not(feature = "ethexe"))] mod gprogram_basic; #[test] fn gprogram_basic() { use gprogram_basic::MyProgram; let _prg = MyProgram::new(42); let _prg = MyProgram::new_forty_two().unwrap(); }