Skip to content

Commit 1771b0b

Browse files
committed
Add 80371
Issue: rust-lang/rust#80371
1 parent 4d5f648 commit 1771b0b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

ices/80371.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
rustc -C llvm-args=--x86-asm-syntax=intel -C opt-level=3 - << 'EOF'
4+
#![crate_type = "lib"]
5+
pub struct Header<'a> {
6+
pub value: &'a [u8],
7+
}
8+
9+
pub fn test() {
10+
let headers = [Header{value: &[]}; 128];
11+
}
12+
EOF

0 commit comments

Comments
 (0)