Skip to content

Commit 561e165

Browse files
committed
rustc_mir: Mark the crate as unstable
Wouldn't want to be able to link to this on stable Rust! Conflicts: src/librustc_mir/lib.rs
1 parent eb8f43c commit 561e165

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/librustc_mir/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ Rust MIR: a lowered representation of Rust. Also: an experiment!
1717
#![crate_name = "rustc_mir"]
1818
#![crate_type = "rlib"]
1919
#![crate_type = "dylib"]
20+
#![unstable(feature = "rustc_private", issue = "27812")]
2021

2122
#![feature(rustc_private)]
23+
#![feature(staged_api)]
2224

2325
#[macro_use] extern crate log;
2426
extern crate graphviz as dot;

0 commit comments

Comments
 (0)