sat-rs/satrs-mib/codegen/tests/basic.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
210 B
Rust

//! Basic check which just verifies that everything compiles
use satrs_mib::resultcode;
use satrs_shared::res_code::ResultU16;
#[resultcode]
const _TEST_RESULT: ResultU16 = ResultU16::new(0, 1);
fn main() {}