tests: Remove spuriously failing vec-tryinto-array codegen test

This commit is contained in:
Jubilee Young 2024-09-22 16:42:28 -07:00
parent 6c6d210089
commit ff3a9f4e2a
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
//@ compile-flags: -O
// This regress since Rust version 1.72.
//@ min-llvm-version: 18.1.4
#![crate_type = "lib"]
use std::convert::TryInto;
const N: usize = 24;
// CHECK-LABEL: @example
// CHECK-NOT: unwrap_failed
#[no_mangle]
pub fn example(a: Vec<u8>) -> u8 {
if a.len() != 32 {
return 0;
}
let a: [u8; 32] = a.try_into().unwrap();
a[15] + a[N]
}