Skip to content

Commit 686d5f8

Browse files
committed
Comment on allowing only feature(test) in compiletest
1 parent 51b7044 commit 686d5f8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/tools/compiletest/src/main.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#![crate_name = "compiletest"]
2-
#![feature(test)]
32
#![deny(warnings)]
3+
// The `test` crate is the only unstable feature
4+
// allowed here, just to share similar code.
5+
#![feature(test)]
46

57
extern crate test;
68

0 commit comments

Comments
 (0)