diff options
| author | David Wood <david.wood2@arm.com> | 2025-01-23 11:25:12 +0000 |
|---|---|---|
| committer | David Wood <david.wood2@arm.com> | 2025-06-16 23:04:33 +0000 |
| commit | 322cc315040da14c12f84d74fd5761c5d064e50e (patch) | |
| tree | 5ee130130df3546a2f012dd84ad8bc95819da381 /tests/codegen/unwind-abis/vectorcall-unwind-abi.rs | |
| parent | c6d88a1892ed9a7e6b12d116070be59114a624ad (diff) | |
| download | rust-322cc315040da14c12f84d74fd5761c5d064e50e.tar.gz rust-322cc315040da14c12f84d74fd5761c5d064e50e.zip | |
tests: `{Meta,Pointee}Sized` in non-minicore tests
As before, add `MetaSized` and `PointeeSized` traits to all of the non-minicore `no_core` tests so that they don't fail for lack of language items.
Diffstat (limited to 'tests/codegen/unwind-abis/vectorcall-unwind-abi.rs')
| -rw-r--r-- | tests/codegen/unwind-abis/vectorcall-unwind-abi.rs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/codegen/unwind-abis/vectorcall-unwind-abi.rs b/tests/codegen/unwind-abis/vectorcall-unwind-abi.rs index b420f67ca9b..d001a16b32a 100644 --- a/tests/codegen/unwind-abis/vectorcall-unwind-abi.rs +++ b/tests/codegen/unwind-abis/vectorcall-unwind-abi.rs @@ -2,8 +2,15 @@ //@ compile-flags: --target=i686-pc-windows-msvc --crate-type=rlib -Cno-prepopulate-passes #![no_core] #![feature(no_core, lang_items, abi_vectorcall)] + +#[lang = "pointee_sized"] +pub trait PointeeSized {} + +#[lang = "meta_sized"] +pub trait MetaSized: PointeeSized {} + #[lang = "sized"] -trait Sized {} +pub trait Sized: MetaSized {} // Test that `nounwind` attributes are correctly applied to exported `vectorcall` and // `vectorcall-unwind` extern functions. `vectorcall-unwind` functions MUST NOT have this attribute. |
