2024-11-16 10:26:46 +01:00
|
|
|
//@ compile-flags: --target=x86_64-unknown-none --crate-type=lib
|
|
|
|
|
//@ needs-llvm-components: x86
|
|
|
|
|
//@ compile-flags: -Ctarget-feature=-x87
|
|
|
|
|
//@ build-pass
|
|
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
|
#![no_core]
|
|
|
|
|
|
|
|
|
|
#[lang = "sized"]
|
|
|
|
|
pub trait Sized {}
|
2025-03-23 15:50:51 +03:00
|
|
|
|
|
|
|
|
//~? WARN unstable feature specified for `-Ctarget-feature`: `x87`
|