Auto merge of #27065 - marcusklaas:loop-label, r=nrc

This closes https://github.com/rust-lang/rust/issues/27042.

I'd love to know if there's a way to make a regression test for this!
This commit is contained in:
bors 2015-07-20 00:13:22 +00:00
commit be23d44a53
2 changed files with 49 additions and 19 deletions

View file

@ -0,0 +1,26 @@
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// Regression test for #27042. Test that a loop's label is included in its span.
fn main() {
let _: i32 =
'a: //~ ERROR mismatched types
loop { break };
let _: i32 =
'b: //~ ERROR mismatched types
while true { break };
let _: i32 =
'c: //~ ERROR mismatched types
for _ in None { break };
let _: i32 =
'd: //~ ERROR mismatched types
while let Some(_) = None { break };
}