File tree 1 file changed +7
-2
lines changed 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,17 @@ for example:
17
17
* ** Experimental** : Violations of the [ Stacked Borrows] rules governing aliasing
18
18
for reference types
19
19
20
+ On top of that, Miri will also tell you about memory leaks: when there is memory
21
+ still allocated at the end of the execution, and that memory is not reachable
22
+ from a global ` static ` , Miri will raise an error. Note however that
23
+ [ leak checking is currently disabled on Windows targets] ( https://github.com/rust-lang/miri/issues/1302 ) .
24
+
20
25
Miri has already discovered some [ real-world bugs] ( #bugs-found-by-miri ) . If you
21
26
found a bug with Miri, we'd appreciate if you tell us and we'll add it to the
22
27
list!
23
28
24
- Be aware that Miri will ** not catch all cases of undefined behavior** in your
25
- program, and cannot run all programs:
29
+ However, be aware that Miri will ** not catch all cases of undefined behavior**
30
+ in your program, and cannot run all programs:
26
31
27
32
* There are still plenty of open questions around the basic invariants for some
28
33
types and when these invariants even have to hold. Miri tries to avoid false
You can’t perform that action at this time.
0 commit comments