chore(checkpoint): save current v0 build state

This commit is contained in:
slhx agent
2026-05-10 20:51:22 +02:00
parent e0484f8eb6
commit c4e02db5f8
25 changed files with 4095 additions and 508 deletions
+11
View File
@@ -0,0 +1,11 @@
use slhx_derive::surface;
#[surface]
mod ui {
pub const EXISTING: u8 = 1;
}
#[test]
fn surface_macro_preserves_inline_module_without_generated_file() {
assert_eq!(ui::EXISTING, 1);
}