Skip to content

Commit ba43bb4

Browse files
committed
ignore alloc example because this is a library, not a binary
1 parent 85e1918 commit ba43bb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rust-next/alloc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ prior to stabilizing support for `#![no_std]` binaries using `alloc`.
1919
If you are the maintainer of a library that only relies on some allocation primitives to function,
2020
consider making your library `#[no_std]` compatible by using the following at the top of your `lib.rs` file:
2121

22-
```rust
22+
```rust,ignore
2323
#![no_std]
2424
2525
extern crate alloc;

0 commit comments

Comments
 (0)