2024-12-26 18:32:22 +01:00
|
|
|
//@ compile-flags: --target=riscv32e-unknown-none-elf --crate-type=lib
|
|
|
|
//@ needs-llvm-components: riscv
|
|
|
|
#![feature(no_core, lang_items, riscv_target_feature)]
|
2024-11-16 10:26:46 +01:00
|
|
|
#![no_core]
|
|
|
|
|
|
|
|
#[lang = "sized"]
|
|
|
|
pub trait Sized {}
|
|
|
|
|
2024-12-26 18:32:22 +01:00
|
|
|
#[target_feature(enable = "d")]
|
|
|
|
//~^ERROR: cannot be enabled with
|
2024-11-16 10:26:46 +01:00
|
|
|
pub unsafe fn my_fun() {}
|