Bump version and stage0 compiler

This commit is contained in:
Alex Crichton 2017-06-06 19:32:43 -07:00
parent 04145943a2
commit be7ebdd512
47 changed files with 24 additions and 283 deletions

View file

@ -29,17 +29,13 @@
#![allow(unused_attributes)]
#![feature(specialization)]
#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
#![cfg_attr(stage0, feature(rustc_private))]
#![cfg_attr(stage0, feature(staged_api))]
use std::borrow::Cow;
use std::cell::{Cell, RefCell};
use std::ops::{Add, Sub};
use std::rc::Rc;
use std::cmp;
use std::fmt;
use std::hash::Hasher;
use std::ops::{Add, Sub};
use std::rc::Rc;
use rustc_data_structures::stable_hasher::StableHasher;