sat-rs/satrs-macros/tests/verify_gen_struct.rs

8 lines
209 B
Rust
Raw Normal View History

2022-11-27 18:21:50 +01:00
use satrs_core::resultcode::ResultU16;
use satrs_macros::*;
#[result(info = "This is a test result where the first parameter is foo")]
const TEST_RESULT: ResultU16 = ResultU16::const_new(0, 1);
fn main() {}