blob: beab07bd6c6afe90e912376cfc9ab8c332f5b460 [file]
//! Basic smoke test for `minicore` test auxiliary.
//@ add-minicore
//@ 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() {}