2024-06-08 06:26:37 -05:00
|
|
|
//@ revisions: WINDOWS_ ANDROID_
|
2023-10-06 19:29:42 -05:00
|
|
|
//@ compile-flags: -C panic=abort -Copt-level=0
|
2024-06-08 06:26:37 -05:00
|
|
|
//@ [WINDOWS_] compile-flags: --target=x86_64-pc-windows-msvc
|
|
|
|
//@ [WINDOWS_] needs-llvm-components: x86
|
|
|
|
//@ [ANDROID_] compile-flags: --target=armv7-linux-androideabi
|
|
|
|
//@ [ANDROID_] needs-llvm-components: arm
|
2021-03-22 13:38:30 -05:00
|
|
|
|
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![no_core]
|
|
|
|
|
|
|
|
#[lang = "sized"]
|
|
|
|
trait Sized {}
|
|
|
|
|
|
|
|
// CHECK: attributes #{{.*}} uwtable
|
|
|
|
pub fn foo() {}
|