Move definition of Edition from libsyntax to libsyntax_pos

This commit is contained in:
Vadim Petrochenkov 2018-04-23 01:44:19 +03:00
parent 90463a6bdc
commit ee5b1e15aa
3 changed files with 3 additions and 2 deletions

View file

@ -20,6 +20,7 @@
#![feature(const_fn)]
#![feature(custom_attribute)]
#![feature(non_exhaustive)]
#![feature(optin_builtin_traits)]
#![allow(unused_attributes)]
#![feature(specialization)]
@ -48,6 +49,7 @@ extern crate serialize as rustc_serialize; // used by deriving
extern crate unicode_width;
pub mod edition;
pub mod hygiene;
pub use hygiene::{Mark, SyntaxContext, ExpnInfo, ExpnFormat, NameAndSpan, CompilerDesugaringKind};