mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 13:07:37 +00:00
10 lines
235 B
Rust
10 lines
235 B
Rust
//@ 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 {}
|