2025-01-27 17:18:13 +00:00
|
|
|
//! Ensure that if disabling a target feature implies disabling an ABI-required target feature,
|
|
|
|
//! we complain.
|
2024-12-26 18:47:41 +00:00
|
|
|
//@ compile-flags: --target=x86_64-unknown-linux-gnu --crate-type=lib
|
|
|
|
//@ needs-llvm-components: x86
|
|
|
|
//@ compile-flags: -Ctarget-feature=-sse
|
|
|
|
// For now this is just a warning.
|
|
|
|
//@ build-pass
|
2025-01-27 17:18:13 +00:00
|
|
|
//@error-pattern: must be enabled to ensure that the ABI
|
2024-12-26 18:47:41 +00:00
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#![no_core]
|
|
|
|
|
|
|
|
#[lang = "sized"]
|
|
|
|
pub trait Sized {}
|