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 --- src/test/ui/static/static-extern-type.rs | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/test/ui/static/static-extern-type.rs (limited to 'src/test/ui/static/static-extern-type.rs') diff --git a/src/test/ui/static/static-extern-type.rs b/src/test/ui/static/static-extern-type.rs deleted file mode 100644 index 4fa48fa13..000000000 --- a/src/test/ui/static/static-extern-type.rs +++ /dev/null @@ -1,27 +0,0 @@ -// build-pass (FIXME(62277): could be check-pass?) -#![feature(extern_types)] - -pub mod a { - extern "C" { - pub type StartFn; - pub static start: StartFn; - } -} - -pub mod b { - #[repr(transparent)] - pub struct TransparentType(::a::StartFn); - extern "C" { - pub static start: TransparentType; - } -} - -pub mod c { - #[repr(C)] - pub struct CType(u32, ::b::TransparentType); - extern "C" { - pub static start: CType; - } -} - -fn main() {} -- cgit v1.2.3