auto merge of #6969 : Blei/rust/no-try, r=bstrie

This commit is contained in:
bors 2013-06-06 06:52:43 -07:00
commit 8f18ea8b72
1 changed files with 1 additions and 1 deletions

View File

@ -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
}