We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 737b461 commit e1338ccCopy full SHA for e1338cc
library/alloc/tests/vec.rs
@@ -1906,6 +1906,7 @@ fn test_stable_pointers() {
1906
assert_eq!(*v0, 13);
1907
1908
// Smoke test that would fire even outside Miri if an actual relocation happened.
1909
+ // Also ensures the pointer is still writeable after all this.
1910
*v0 -= 13;
1911
assert_eq!(v[0], 0);
1912
}
library/core/tests/future.rs
@@ -30,7 +30,6 @@ fn poll_n(val: usize, num: usize) -> PollN {
30
31
32
#[test]
33
-#[cfg_attr(miri, ignore)] // self-referential generators do not work with Miri's aliasing checks
34
fn test_join() {
35
block_on(async move {
36
let x = join!(async { 0 }).await;
0 commit comments