Skip to content

Commit d309ab7

Browse files
authored
Merge pull request rust-lang#39 from oli-obk/can_you_read_me_now
use the item path printer that prints user friendly textual paths
2 parents 87306f1 + ae3c49a commit d309ab7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/interpreter/mod.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,6 @@ impl<'a, 'tcx> EvalContext<'a, 'tcx> {
236236
}
237237

238238
fn load_mir(&self, def_id: DefId) -> CachedMir<'a, 'tcx> {
239-
use rustc_trans::back::symbol_names::def_id_to_string;
240239
match self.tcx.map.as_local_node_id(def_id) {
241240
Some(node_id) => CachedMir::Ref(self.mir_map.map.get(&node_id).unwrap()),
242241
None => {
@@ -247,7 +246,7 @@ impl<'a, 'tcx> EvalContext<'a, 'tcx> {
247246

248247
let cs = &self.tcx.sess.cstore;
249248
let mir = cs.maybe_get_item_mir(self.tcx, def_id).unwrap_or_else(|| {
250-
panic!("no mir for `{}`", def_id_to_string(self.tcx, def_id));
249+
panic!("no mir for `{}`", self.tcx.item_path_str(def_id));
251250
});
252251
let cached = Rc::new(mir);
253252
mir_cache.insert(def_id, cached.clone());

tests/compile-fail/env_args.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//error-pattern: no mir for `std
1+
//error-pattern: no mir for `std::env::args`
22

33
fn main() {
44
let x = std::env::args();

0 commit comments

Comments
 (0)