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

8 lines
209 B
Rust
Raw Normal View History

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