Skip to content

Commit 2d89027

Browse files
committed
Make the test actually emit the future incompat lint
1 parent 5a06b1e commit 2d89027

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

compiler/rustc_lint_defs/src/builtin.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -1026,10 +1026,11 @@ declare_lint! {
10261026
/// ### Example
10271027
///
10281028
/// ```rust,compile_fail
1029+
/// #![feature(const_ptr_read)]
10291030
/// const FOO: () = unsafe {
1030-
/// 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
1031+
/// let x = &[0_u8; 4];
1032+
/// 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
10331034
/// // it is aligned enough for reading a `u32`.
10341035
/// };
10351036
/// ```

0 commit comments

Comments
 (0)