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.
27 lines
758 B
Rust
27 lines
758 B
Rust
//@ revisions: paca pacg
|
|
//@ compile-flags: --crate-type=rlib --target=aarch64-unknown-linux-gnu
|
|
//@ needs-llvm-components: aarch64
|
|
//@[paca] compile-flags: -Ctarget-feature=+paca
|
|
//@[pacg] compile-flags: -Ctarget-feature=+pacg
|
|
#![feature(no_core, lang_items)]
|
|
#![no_core]
|
|
|
|
#[lang = "pointee_sized"]
|
|
pub trait PointeeSized {}
|
|
|
|
#[lang = "meta_sized"]
|
|
pub trait MetaSized: PointeeSized {}
|
|
|
|
#[lang = "sized"]
|
|
pub trait Sized: MetaSized {}
|
|
|
|
// In this test, demonstrate that +paca and +pacg both result in the tied feature error if there
|
|
// isn't something causing an error.
|
|
// See tied-features-no-implication.rs
|
|
|
|
#[cfg(target_feature = "pacg")]
|
|
pub unsafe fn foo() {
|
|
}
|
|
|
|
//~? ERROR the target features paca, pacg must all be either enabled or disabled together
|