We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca8a2e1 commit 98e7424Copy full SHA for 98e7424
tests/run-make/alloc-no-rc/rmake.rs
@@ -0,0 +1,18 @@
1
+// ignore-tidy-linelength
2
+
3
+extern crate run_make_support;
4
5
+use run_make_support::rustc;
6
7
+fn main() {
8
+ rustc()
9
+ .arg("--edition")
10
+ .arg("2021")
11
+ .arg("-Dwarnings")
12
+ .arg("--crate-type")
13
+ .arg("rlib")
14
+ .arg("../../../library/alloc/src/lib.rs")
15
+ .arg("--cfg")
16
+ .arg("no_rc")
17
+ .run();
18
+}
tests/run-make/alloc-no-sync/Makefile
0 commit comments