File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -86,10 +86,10 @@ fn main() {
8686```
8787
8888On Rust 1.44.0, this happens to print "x: 0" on my machine. But it could
89- print anything, or do anything: this is undefined behavior. But we have
90- no ` unsafe ` code here . This is what we call a "soundness" bug, that is,
91- it is a bug where the compiler does the wrong thing. We tag these bugs
92- as
89+ print anything, or do anything: this is undefined behavior. But the ` unsafe `
90+ keyword is not used within this block of code . This is what we call a
91+ "soundness" bug, that is, it is a bug where the compiler does the wrong thing.
92+ We tag these bugs as
9393[ I-unsound] ( https://github.com/rust-lang/rust/issues?q=is%3Aissue+is%3Aopen+label%3A%22I-unsound+%F0%9F%92%A5%22 )
9494on our issue tracker, and take them very seriously.
9595
You can’t perform that action at this time.
0 commit comments