]> git.lizzy.rs Git - rust.git/commit
auto merge of #13330 : huonw/rust/loop-error, r=alexcrichton
authorbors <bors@rust-lang.org>
Sat, 5 Apr 2014 11:41:33 +0000 (04:41 -0700)
committerbors <bors@rust-lang.org>
Sat, 5 Apr 2014 11:41:33 +0000 (04:41 -0700)
commite7148592adde0b09d7bf34426e215c6c25fc7cd1
tree2c1fc0d2a516a8a0e02cc2dad1728ad296231519
parent3bfa05021db00aa04fe206292ed0e70342767aa4
parent3766453a422198c77df4970159dd3a56f05e1861
auto merge of #13330 : huonw/rust/loop-error, r=alexcrichton

rustc: move the check_loop pass earlier.

This pass is purely AST based, and by running it earlier we emit more
useful error messages, e.g. type inference fails in the case of
`let r = break;` with few constraints on `r`, but it's more useful to be told that
the `break` is outside the loop (rather than a type error) when it is.

Closes #13292.