Add allow(unstable) to more tests

This commit is contained in:
Brian Anderson 2015-01-17 00:58:06 -08:00
parent 9035ba5f76
commit 5cfbecfdb4
3 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,7 @@
#![deny(warnings)]
#![allow(unused_must_use)]
#![allow(unknown_features)]
#![allow(unstable)]
#![feature(box_syntax)]
use std::fmt;

View File

@ -12,6 +12,7 @@
// Pretty printing tests complain about `use std::predule::*`
#![allow(unused_imports)]
#![allow(unstable)]
// We shouldn't need to rebind a moved upvar as mut if it's already
// marked as mut

View File

@ -14,6 +14,7 @@
// Pretty printing tests complain about `use std::predule::*`
#![allow(unused_imports)]
#![allow(unstable)]
// A var moved into a proc, that has a mutable loan path should
// not trigger a misleading unused_mut warning.