From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/check-static-recursion-foreign.rs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/ui/check-static-recursion-foreign.rs (limited to 'tests/ui/check-static-recursion-foreign.rs') diff --git a/tests/ui/check-static-recursion-foreign.rs b/tests/ui/check-static-recursion-foreign.rs new file mode 100644 index 000000000..3072deb6c --- /dev/null +++ b/tests/ui/check-static-recursion-foreign.rs @@ -0,0 +1,23 @@ +// run-pass + +// Static recursion check shouldn't fail when given a foreign item (#18279) + +// aux-build:check_static_recursion_foreign_helper.rs +// ignore-wasm32-bare no libc to test ffi with + +// pretty-expanded FIXME #23616 + +#![feature(rustc_private)] + +extern crate check_static_recursion_foreign_helper; +extern crate libc; + +use libc::c_int; + +extern "C" { + static test_static: c_int; +} + +pub static B: &'static c_int = unsafe { &test_static }; + +pub fn main() {} -- cgit v1.2.3