Skip to content

Commit

Permalink
Adjust tests for invalid_pointer_trait_comparisons
Browse files Browse the repository at this point in the history
  • Loading branch information
Urgau committed Nov 9, 2023
1 parent e3974cf commit 3da2841
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion library/alloc/tests/vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1933,7 +1933,7 @@ fn vec_macro_repeating_null_raw_fat_pointer() {

let vec = vec![null_raw_dyn; 1];
dbg!(ptr_metadata(vec[0]));
assert!(vec[0] == null_raw_dyn);
assert!(std::ptr::eq(vec[0], null_raw_dyn));

// Polyfill for https://github.com/rust-lang/rfcs/pull/2580

Expand Down
2 changes: 2 additions & 0 deletions tests/ui/mir/mir_raw_fat_ptr.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// run-pass
// check raw fat pointer ops in mir
// FIXME: please improve this when we get monomorphization support

#![feature(raw_ref_op)]
#![allow(invalid_pointer_trait_comparisons)]

use std::mem;

Expand Down

0 comments on commit 3da2841

Please sign in to comment.