1
Fork 0

Comment on allowing only feature(test) in compiletest

This commit is contained in:
Josh Stone 2020-01-08 15:13:50 -08:00
parent 51b7044347
commit 686d5f83ef

View file

@ -1,6 +1,8 @@
#![crate_name = "compiletest"] #![crate_name = "compiletest"]
#![feature(test)]
#![deny(warnings)] #![deny(warnings)]
// The `test` crate is the only unstable feature
// allowed here, just to share similar code.
#![feature(test)]
extern crate test; extern crate test;