Merge branch 'issue-76704-fix' of https://github.com/tdelabro/rust into issue-76704-fix

merging
This commit is contained in:
Timothée Delabrouille 2021-04-09 12:18:18 +02:00
commit 1ddddca57e

View file

@ -378,7 +378,7 @@ The compiler is allowed to instantiate multiple copies an `asm!` block, for exam
Moreover, due to [an llvm bug], you shouldn't use labels exclusively make of `0` and `1` digits, e.g. `0`, `11` or `101010`, as they may end up being interpreted as binary values.
```rust
```rust,allow_fail
#![feature(asm)]
let mut a = 0;