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 98e7424 commit d1b1947Copy full SHA for d1b1947
tests/run-make/alloc-no-oom-handling/Makefile
tests/run-make/alloc-no-oom-handling/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_global_oom_handling")
17
+ .run();
18
+}
0 commit comments