Skip to content

Commit a1f0df4

Browse files
committed
Add 83461
Issue: rust-lang/rust#83461
1 parent cc996c8 commit a1f0df4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

ices/83461.rs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#![feature(core_intrinsics, rustc_attrs)]
2+
use std::intrinsics::rustc_peek;
3+
struct S;
4+
#[rustc_mir(rustc_peek_definite_init)]
5+
fn foo(z: S) {
6+
let ret;
7+
rustc_peek(rustc_peek(z));
8+
ret
9+
}
10+
11+
fn main() {}

0 commit comments

Comments
 (0)