We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df4e2fe commit 4e9cb4cCopy full SHA for 4e9cb4c
const_safety.md
@@ -9,7 +9,8 @@ four possible ways:
9
* The program causes undefined behavior (e.g., dereferencing an out-of-bounds
10
pointer).
11
* The program panics (e.g., a failed bounds check).
12
-* The program loops forever, and this is detected by the loop detector.
+* The program loops forever, and this is detected by the loop detector. Note
13
+ that this detection happens on a best-effort basis only.
14
15
Just like panics and non-termination are acceptable in safe run-time Rust code,
16
we also consider these acceptable in safe compile-time Rust code. However, we
0 commit comments