tests/ui: add minicore compiletest self-test

This commit is contained in:
许杰友 Jieyou Xu (Joe) 2024-10-11 18:42:20 +08:00
parent a8b34f58cf
commit 0bbe07e8ff

View File

@ -0,0 +1,20 @@
//! Basic smoke test for `minicore` test auxiliary.
//!
//! This test is duplicated between ui/codegen/assembly because they have different runtest
//! codepaths.
//@ add-core-stubs
//@ check-pass
//@ 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 {}