Skip to main content

miden_standards/errors/
mod.rs

1/// The errors from the MASM code of the Miden standards.
2#[cfg(any(feature = "testing", test))]
3pub mod standards {
4    include!(concat!(env!("OUT_DIR"), "/standards_errors.rs"));
5}
6
7mod code_builder_errors;
8pub use code_builder_errors::CodeBuilderError;