From 1a64684b0421d9e7090c0f805ef7637d0d6789ba Mon Sep 17 00:00:00 2001 From: lucarlig Date: Fri, 1 Aug 2025 15:04:58 +0100 Subject: [PATCH] LLVM error with unsupported expression in static initializer for const pointer in array on macOS --- ...ported-static-initializer-in-const-array.rs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/ui/codegen/unsupported-static-initializer-in-const-array.rs diff --git a/tests/ui/codegen/unsupported-static-initializer-in-const-array.rs b/tests/ui/codegen/unsupported-static-initializer-in-const-array.rs new file mode 100644 index 0000000000000..bc94130ee199a --- /dev/null +++ b/tests/ui/codegen/unsupported-static-initializer-in-const-array.rs @@ -0,0 +1,18 @@ +//! LLVM error with unsupported expression in static +//! initializer for const pointer in array on macOS. +//! +//! Regression test for . + +//@ build-pass +//@ compile-flags: -C opt-level=3 + +const fn make() -> (i32, i32, *const i32) { + const V: i32 = 123; + &V as *const i32; + (0, 0, &V) +} + +fn main() { + let arr = [make(); 32]; + println!("{}", arr[0].0); +}