diff options
| author | Felix S. Klock II <pnkfelix@pnkfx.org> | 2015-07-23 16:01:46 +0200 |
|---|---|---|
| committer | Felix S. Klock II <pnkfelix@pnkfx.org> | 2015-07-23 16:02:26 +0200 |
| commit | 73df224f0559e31e6d4623978cf25ada9ba1e2d8 (patch) | |
| tree | fcfaa4cf8f35ec735078cafe157c4f835d7cc06d /src/liballoc/lib.rs | |
| parent | 1905a498751af69ffe78de8eae0c4e83d562d175 (diff) | |
| download | rust-73df224f0559e31e6d4623978cf25ada9ba1e2d8.tar.gz rust-73df224f0559e31e6d4623978cf25ada9ba1e2d8.zip | |
Review feedback: add unstable marker to Placer API and put in bound that now works.
Diffstat (limited to 'src/liballoc/lib.rs')
| -rw-r--r-- | src/liballoc/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index 480c1a502c6..f66495c4057 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -70,6 +70,8 @@ test(no_crate_inject))] #![no_std] +// SNAP d4432b3 +#![allow(unused_features)] // until feature(placement_in_syntax) is in snap #![feature(allocator)] #![feature(box_syntax)] #![feature(coerce_unsized)] @@ -83,6 +85,7 @@ #![feature(nonzero)] #![feature(optin_builtin_traits)] #![feature(placement_in_syntax)] +#![feature(placement_new_protocol)] #![feature(raw)] #![feature(staged_api)] #![feature(unboxed_closures)] |
