trying to internalize mib codegen

This commit is contained in:
2022-11-27 22:13:15 +01:00
parent b0b41a07dc
commit 489686c8ce
8 changed files with 7 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
//! Basic check which just verifies that everything compiles
use satrs_core::res_code::ResultU16;
use satrs_macros::*;
#[resultcode(info = "This is a test result where the first parameter is foo")]
const _TEST_RESULT: ResultU16 = ResultU16::const_new(0, 1);
fn main() {}