Skip to content

Commit

Permalink
Merge #1225
Browse files Browse the repository at this point in the history
1225: Disable `rustc_smir` while RA autocomplete is broken for it r=JonasAlaif a=JonasAlaif



Co-authored-by: Jonas <[email protected]>
  • Loading branch information
bors[bot] and JonasAlaif authored Nov 17, 2022
2 parents dcb86a5 + 8aff356 commit eec13c3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion prusti-rustc-interface/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,10 @@ pub extern crate rustc_session as session;
pub extern crate rustc_span as span;
pub extern crate rustc_target as target;

pub use rustc_smir::very_unstable::{borrowck, dataflow, hir, middle, trait_selection};
// TODO: switch over to `rustc_smir` once RA knows about the crate
// pub use rustc_smir::very_unstable::{borrowck, dataflow, hir, middle, trait_selection};
pub extern crate rustc_borrowck as borrowck;
pub extern crate rustc_hir as hir;
pub extern crate rustc_middle as middle;
pub extern crate rustc_mir_dataflow as dataflow;
pub extern crate rustc_trait_selection as trait_selection;

0 comments on commit eec13c3

Please sign in to comment.