diff options
| author | Brian Anderson <banderson@mozilla.com> | 2015-01-26 19:33:43 -0800 | 
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2015-01-26 20:57:46 -0800 | 
| commit | 3c172392cf0c86ffd1d7b39d3f44de98f77afc44 (patch) | |
| tree | 7836d2cc96aca309b06a6e0d1273ac01e9179036 | |
| parent | abc56a011a0c00ac85a896957ff6182d3d86f4aa (diff) | |
| download | rust-3c172392cf0c86ffd1d7b39d3f44de98f77afc44.tar.gz rust-3c172392cf0c86ffd1d7b39d3f44de98f77afc44.zip | |
Merge fixes
| -rw-r--r-- | src/test/compile-fail/missing_debug_impls.rs | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/test/compile-fail/missing_debug_impls.rs b/src/test/compile-fail/missing_debug_impls.rs index 4adae2f3680..5b781a40fe5 100644 --- a/src/test/compile-fail/missing_debug_impls.rs +++ b/src/test/compile-fail/missing_debug_impls.rs @@ -10,7 +10,8 @@ // compile-flags: --crate-type lib #![deny(missing_debug_implementations)] -#![allow(unused, unstable, missing_copy_implementations)] +#![allow(unused, missing_copy_implementations)] +#![feature(core)] use std::fmt; | 
