about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTimothée <timothee.delabrouille@gmail.com>2021-04-09 00:09:14 +0200
committerTimothée <timothee.delabrouille@gmail.com>2021-04-09 00:09:14 +0200
commit406cfc3b209e7f10d909698432a9729d2f1ef2c2 (patch)
tree1bc0e33c99bf86fe442dec7c8167b257bdb49597
parente5fe9eb8996d2d8236755e1f21f673f86f8c854c (diff)
downloadrust-406cfc3b209e7f10d909698432a9729d2f1ef2c2.tar.gz
rust-406cfc3b209e7f10d909698432a9729d2f1ef2c2.zip
add 'allow_fail' to example
-rw-r--r--src/doc/unstable-book/src/library-features/asm.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/unstable-book/src/library-features/asm.md b/src/doc/unstable-book/src/library-features/asm.md
index 0503c26014a..dc65e40ad05 100644
--- a/src/doc/unstable-book/src/library-features/asm.md
+++ b/src/doc/unstable-book/src/library-features/asm.md
@@ -378,7 +378,7 @@ The compiler is allowed to instantiate multiple copies an `asm!` block, for exam
 
 Moreover due to [a llvm bug], you cannot use `0` or `1` as labels. Therefore only labels in the `2`-`99` range are allowed.
 
-```rust
+```rust,allow_fail
 #![feature(asm)]
 
 let mut a = 0;