We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5c515b commit 93e5072Copy full SHA for 93e5072
compiler/rustc_error_codes/src/error_codes/E0793.md
@@ -73,7 +73,7 @@ unsafe {
73
let foo = Foo { field1: 0 };
74
// Accessing the field directly is fine.
75
let val = foo.field1;
76
-
+
77
// A reference to a packed union field causes an error.
78
let val = &foo.field1; // ERROR
79
}
@@ -89,4 +89,4 @@ See [issue #82523] for more information.
89
90
[packed]: https://doc.rust-lang.org/reference/type-layout.html#the-alignment-modifiers
91
[undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
92
-[issue #82523]: https://github.com/rust-lang/rust/issues/82523
+[issue #82523]: https://github.com/rust-lang/rust/issues/82523
0 commit comments