mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 21:40:58 +00:00
11 lines
281 B
Rust
11 lines
281 B
Rust
//@ compile-flags: --target=aarch64-unknown-linux-gnu --crate-type=lib
|
|
//@ needs-llvm-components: aarch64
|
|
//@ compile-flags: -Ctarget-feature=-neon
|
|
// For now this is just a warning.
|
|
//@ build-pass
|
|
#![feature(no_core, lang_items)]
|
|
#![no_core]
|
|
|
|
#[lang = "sized"]
|
|
pub trait Sized {}
|