We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51b7044 commit 686d5f8Copy full SHA for 686d5f8
src/tools/compiletest/src/main.rs
@@ -1,6 +1,8 @@
1
#![crate_name = "compiletest"]
2
-#![feature(test)]
3
#![deny(warnings)]
+// The `test` crate is the only unstable feature
4
+// allowed here, just to share similar code.
5
+#![feature(test)]
6
7
extern crate test;
8
0 commit comments