blob: 7368ef120fa6e2c25b821e7a4891515d13c55f8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ 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 {}
//~? WARN unstable feature specified for `-Ctarget-feature`: `x87`
|