Skip to content

Commit

Permalink
Fix #28105 test and add a test for #28109
Browse files Browse the repository at this point in the history
  • Loading branch information
nagisa committed Sep 3, 2015
1 parent d8074e6 commit f6244f1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 10 deletions.
15 changes: 5 additions & 10 deletions src/test/compile-fail/issue-28105.rs
@@ -1,4 +1,4 @@
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
Expand All @@ -11,13 +11,8 @@
// Make sure that a continue span actually contains the keyword.

fn main() {
'a: loop {
if false {
continue //~ ERROR use of undeclared label
'b;
} else {
break //~ ERROR use of undeclared label
'c;
}
}
continue //~ ERROR `continue` outside of loop
;
break //~ ERROR `break` outside of loop
;
}
20 changes: 20 additions & 0 deletions src/test/compile-fail/issue-28109.rs
@@ -0,0 +1,20 @@
// Copyright 2012-2015 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.

// Make sure that label for continue and break is spanned correctly

fn main() {
continue
'b //~ ERROR use of undeclared label
;
break
'c //~ ERROR use of undeclared label
;
}

0 comments on commit f6244f1

Please sign in to comment.