Guest User

Untitled

a guest
Oct 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #![feature(rustc_private)]
  2.  
  3. fn main() {
  4. let _ = {
  5. extern crate rustc; // why does this compile if it doesn't do anything?
  6. //use rustc::mir::Mir; // code compiles without this line
  7. true
  8. };
  9. }
Add Comment
Please, Sign In to add comment