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 bf71dae commit 4ba56e2Copy full SHA for 4ba56e2
tests/run-make/version/Makefile
tests/run-make/version/rmake.rs
@@ -0,0 +1,14 @@
1
+// This test checks the availability and version of the Rust compiler installed on the system.
2
+
3
+extern crate run_make_support;
4
5
+use run_make_support::rustc;
6
7
+fn main() {
8
+ rustc().arg("-v").run();
9
+ rustc().arg("-vV").run();
10
+ rustc()
11
+ .arg("--version")
12
+ .arg("--verbose")
13
+ .run();
14
+}
0 commit comments