forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rustc: allow @ as-patterns to move when the sub-pattern contains no b…
…indings. A pattern like `foo @ Foo(Bar(*), _)` should be legal, even if `foo` moves, since the subpatterns are purely structural. Fixes rust-lang#3761.
- Loading branch information
Showing
3 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// Copyright 2013 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. | ||
|
||
// Issue #3761 | ||
|
||
struct Foo(~str); | ||
|
||
enum Tree { | ||
Leaf(uint), | ||
Node(~Tree, ~Tree) | ||
} | ||
|
||
fn main() { | ||
match Foo(~"hi") { | ||
_msg @ Foo(_) => {} | ||
} | ||
|
||
match Node(~Node(~Leaf(1), ~Leaf(2)), ~Leaf(3)) { | ||
leaf @ Leaf(*) => { fail!() } | ||
two_subnodes @ Node(~Node(*), ~Node(*)) => { fail!() } | ||
other @ Node(_, _) => { /* ok */ } | ||
} | ||
} |
9d67df6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@huonw mind adding a compile-fail case for the sub-pattern contains a binding?
9d67df6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pnkfelix, there already is one: https://github.com/huonw/rust/blob/9d67df61d2dd2bc359767b1ba7892b0c4b17464b/src/test/compile-fail/bind-by-move-no-sub-bindings.rs
9d67df6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@huonw ah sorry, I should have looked.
9d67df6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r+