mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 19:47:38 +00:00
18 lines
417 B
Rust
18 lines
417 B
Rust
//@ revisions: nocpu cpu
|
|
//@ no-prefer-dynamic
|
|
//@ compile-flags: --crate-type=cdylib --target=amdgcn-amd-amdhsa
|
|
//@ needs-llvm-components: amdgpu
|
|
//@ needs-rust-lld
|
|
//@[nocpu] error-pattern: target requires explicitly specifying a cpu
|
|
//@[nocpu] build-fail
|
|
//@[cpu] compile-flags: -Ctarget-cpu=gfx900
|
|
//@[cpu] build-pass
|
|
|
|
#![feature(no_core, lang_items)]
|
|
#![no_core]
|
|
|
|
#[lang="sized"]
|
|
trait Sized {}
|
|
|
|
pub fn foo() {}
|