Skip to content

Commit

Permalink
auto merge of #6969 : Blei/rust/no-try, r=bstrie
Browse files Browse the repository at this point in the history
  • Loading branch information
bors committed Jun 6, 2013
2 parents 7ce700a + 13df119 commit 8f18ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc/middle/typeck/infer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ impl InferCtxt {
debug!("probe()");
do indent {
let snapshot = self.start_snapshot();
let r = self.try(f);
let r = f();
self.rollback_to(&snapshot);
r
}
Expand Down

0 comments on commit 8f18ea8

Please sign in to comment.