blob: 7eebcf05dc0f4195d4f95bb0e4c28de5a452fd57 [file] [log] [blame]
Ralf Jungf755f4c2025-01-27 17:18:131//! Ensure ABI-required features cannot be disabled via `-Ctarget-feature`.
Ralf Jungd6ddc732024-11-16 09:26:462//@ compile-flags: --target=x86_64-unknown-linux-gnu --crate-type=lib
3//@ needs-llvm-components: x86
4//@ compile-flags: -Ctarget-feature=-x87
5// For now this is just a warning.
6//@ build-pass
Ralf Jungf755f4c2025-01-27 17:18:137//@error-pattern: must be enabled to ensure that the ABI
Ralf Jungd6ddc732024-11-16 09:26:468#![feature(no_core, lang_items)]
9#![no_core]
10
11#[lang = "sized"]
12pub trait Sized {}