sat-rs/satrs-mib/codegen/tests/basic_with_info.rs
Robin Mueller ce23e798f1
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
fix all tests
2024-02-12 15:12:54 +01:00

9 lines
275 B
Rust

//! Basic check which just verifies that everything compiles
use satrs_mib::resultcode;
use satrs_shared::res_code::ResultU16;
#[resultcode(info = "This is a test result where the first parameter is foo")]
const _TEST_RESULT: ResultU16 = ResultU16::new(0, 1);
fn main() {}