2022-11-27 18:47:02 +01:00
|
|
|
//! Basic check which just verifies that everything compiles
|
2022-11-27 17:05:30 +01:00
|
|
|
use satrs_core::resultcode::ResultU16;
|
|
|
|
use satrs_macros::*;
|
|
|
|
|
2022-11-27 18:47:02 +01:00
|
|
|
#[resultcode(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() {}
|