mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 05:27:36 +00:00
12 lines
286 B
Rust
12 lines
286 B
Rust
![]() |
//@ compile-flags: --target=x86_64-unknown-linux-gnu --crate-type=lib
|
||
|
//@ needs-llvm-components: x86
|
||
|
#![feature(no_core, lang_items)]
|
||
|
#![no_core]
|
||
|
|
||
|
#[lang = "sized"]
|
||
|
pub trait Sized {}
|
||
|
|
||
|
#[target_feature(enable = "soft-float")]
|
||
|
//~^ERROR: cannot be toggled with
|
||
|
pub unsafe fn my_fun() {}
|