We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
minicore
1 parent 11b3766 commit ec78176Copy full SHA for ec78176
tests/ui/compiletest-self-test/minicore-smoke-test.rs
@@ -0,0 +1,20 @@
1
+//! Basic smoke test for `minicore` test auxiliary.
2
+//!
3
+//! This test is duplicated between ui/codegen/assembly because they have different runtest
4
+//! codepaths.
5
+
6
+//@ add-core-stubs
7
+//@ check-pass
8
+//@ compile-flags: --target=x86_64-unknown-linux-gnu
9
+//@ needs-llvm-components: x86
10
11
+#![crate_type = "lib"]
12
+#![feature(no_core)]
13
+#![no_std]
14
+#![no_core]
15
16
+extern crate minicore;
17
+use minicore::*;
18
19
+struct Meow;
20
+impl Copy for Meow {}
0 commit comments