tests/codegen: add minicore
compiletest self-test
This commit is contained in:
parent
b115a22828
commit
a8b34f58cf
20
tests/codegen/compiletest-self-test/minicore-smoke-test.rs
Normal file
20
tests/codegen/compiletest-self-test/minicore-smoke-test.rs
Normal file
@ -0,0 +1,20 @@
|
||||
//! Basic smoke test for `minicore` test auxiliary.
|
||||
|
||||
//@ add-core-stubs
|
||||
//@ compile-flags: --target=x86_64-unknown-linux-gnu
|
||||
//@ needs-llvm-components: x86
|
||||
|
||||
#![crate_type = "lib"]
|
||||
#![feature(no_core)]
|
||||
#![no_std]
|
||||
#![no_core]
|
||||
|
||||
extern crate minicore;
|
||||
use minicore::*;
|
||||
|
||||
struct Meow;
|
||||
impl Copy for Meow {}
|
||||
|
||||
// CHECK-LABEL: meow
|
||||
#[no_mangle]
|
||||
fn meow() {}
|
Loading…
Reference in New Issue
Block a user