Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add regression for #18767
  • Loading branch information
bkoropoff committed Nov 8, 2014
1 parent 472e0cf commit a553c2d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/test/run-pass/issue-18767.rs
@@ -0,0 +1,18 @@
// Copyright 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.

// Test that regionck uses the right memcat for patterns in for loops
// and doesn't ICE.

fn main() {
for &&x in Some(&0u).iter() {
assert_eq!(x, 0)
}
}

5 comments on commit a553c2d

@bors
Copy link
Contributor

@bors bors commented on a553c2d Nov 9, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from eddyb
at bkoropoff@a553c2d

@bors
Copy link
Contributor

@bors bors commented on a553c2d Nov 9, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging bkoropoff/rust/regionck-for-loop = a553c2d into auto

@bors
Copy link
Contributor

@bors bors commented on a553c2d Nov 9, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bkoropoff/rust/regionck-for-loop = a553c2d merged ok, testing candidate = 809cd0c

@bors
Copy link
Contributor

@bors bors commented on a553c2d Nov 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on a553c2d Nov 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 809cd0c

Please sign in to comment.