We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ae8991 commit 4dc2ba6Copy full SHA for 4dc2ba6
bmatcher-proc/src/lib.rs
@@ -7,7 +7,7 @@ mod macro_pattern;
7
8
/// Parse a binary pattern and generate an instance of [BorrowedBinaryPattern] at compile time.
9
/// # Example
10
-/// ```rust,compile_fail
+/// ```rust,ignore
11
/// static MY_PATTERN: &dyn BinaryPattern = &pattern!("01 02 ? 03 [4]");
12
/// ```
13
#[proc_macro]
bmatcher/src/lib.rs
@@ -1,2 +1,3 @@
1
+#![cfg_attr(not(test), no_std)]
2
pub use bmatcher_core::*;
3
pub use bmatcher_proc::pattern;
0 commit comments