We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a06b1e commit 2d89027Copy full SHA for 2d89027
compiler/rustc_lint_defs/src/builtin.rs
@@ -1026,10 +1026,11 @@ declare_lint! {
1026
/// ### Example
1027
///
1028
/// ```rust,compile_fail
1029
+ /// #![feature(const_ptr_read)]
1030
/// const FOO: () = unsafe {
- /// let x = [0_u8; 10];
1031
- /// let y = x.as_ptr() as *const u32;
1032
- /// *y; // the address of a `u8` array is unknown and thus we don't know if
+ /// let x = &[0_u8; 4];
+ /// let y = x.as_ptr().cast::<u32>();
1033
+ /// y.read(); // the address of a `u8` array is unknown and thus we don't know if
1034
/// // it is aligned enough for reading a `u32`.
1035
/// };
1036
/// ```
0 commit comments