File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,9 @@ Please read the [Rustonomicon] before writing unsafe code.
58
58
* Invoking undefined behavior via compiler intrinsics.
59
59
* Executing code compiled with platform features that the current platform
60
60
does not support (see [ ` target_feature ` ] ), * except* if the platform explicitly documents this to be safe.
61
- * Calling a function with the wrong [ call ABI] [ abi ] .
61
+ * Calling a function with the wrong [ call ABI] [ abi ] , or unwinding past a stack
62
+ frame that does not allow unwinding (e.g. by calling a ` "C-unwind" ` function
63
+ imported or transmuted as a ` "C" ` function or function pointer).
62
64
* Producing an [ invalid value] [ invalid-values ] . "Producing" a
63
65
value happens any time a value is assigned to or read from a place, passed to
64
66
a function/primitive operation or returned from a function/primitive
You can’t perform that action at this time.
0 commit comments