Skip to content

Commit 8005858

Browse files
committed
I thought I had fixed this typo but it keeps popping up again.
1 parent a2428d4 commit 8005858

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

posts/2022-09-15-const-eval-safety-rule-revision.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ error[E0080]: could not evaluate static initializer
6666
= help: the absolute address of a pointer is not known at compile-time, so such operations are not supported
6767
```
6868

69-
As the message says, this operation is not supported: the `transmute` is trying
70-
to above is trying to reinterpret the memory address `&()` as an integer of type
69+
As the message says, this operation is not supported: the `transmute`
70+
above is trying to reinterpret the memory address `&()` as an integer of type
7171
`usize`. The compiler cannot predict what memory address the `()` would be
7272
associated with at execution time, so it refuses to allow that reinterpretation.
7373

0 commit comments

Comments
 (0)