sat-rs/satrs-mib/codegen/tests/basic.rs

9 lines
279 B
Rust
Raw Normal View History

2022-11-27 18:47:02 +01:00
//! Basic check which just verifies that everything compiles
2022-11-27 22:05:42 +01:00
use satrs_core::res_code::ResultU16;
2022-11-27 22:30:38 +01:00
use satrs_mib::resultcode;
2022-11-27 17:05:30 +01:00
2022-11-27 18:47:02 +01:00
#[resultcode(info = "This is a test result where the first parameter is foo")]
2022-11-27 22:05:42 +01:00
const _TEST_RESULT: ResultU16 = ResultU16::const_new(0, 1);
2022-11-27 17:05:30 +01:00
fn main() {}