Skip to content

Commit 4b3c355

Browse files
committed
rustc_mir: Mark the crate as unstable
Wouldn't want to be able to link to this on stable Rust!
1 parent 2273b52 commit 4b3c355

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/librustc_mir/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ Rust MIR: a lowered representation of Rust. Also: an experiment!
1818
#![crate_type = "rlib"]
1919
#![crate_type = "dylib"]
2020
#![cfg_attr(not(stage0), deny(warnings))]
21+
#![unstable(feature = "rustc_private", issue = "27812")]
2122

2223
#![feature(rustc_private)]
24+
#![feature(staged_api)]
2325

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

0 commit comments

Comments
 (0)