Skip to content

Commit

Permalink
Add allow(unstable) to more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Jan 18, 2015
1 parent 9035ba5 commit 5cfbecf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/test/run-pass/ifmt.rs
Expand Up @@ -14,6 +14,7 @@
#![deny(warnings)]
#![allow(unused_must_use)]
#![allow(unknown_features)]
#![allow(unstable)]
#![feature(box_syntax)]

use std::fmt;
Expand Down
1 change: 1 addition & 0 deletions src/test/run-pass/issue-11958.rs
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/test/run-pass/issue-16671.rs
Expand Up @@ -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.
Expand Down

0 comments on commit 5cfbecf

Please sign in to comment.