-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Propagate coercions through match expressions.
- Loading branch information
Showing
4 changed files
with
81 additions
and
38 deletions.
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
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,21 @@ | ||
// 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. | ||
|
||
// Check that coercions are propagated through match and if expressions. | ||
|
||
pub fn main() { | ||
let _: Box<[int]> = if true { box [1i, 2, 3] } else { box [1i] }; | ||
|
||
let _: Box<[int]> = match true { true => box [1i, 2, 3], false => box [1i] }; | ||
|
||
// Check we don't get over-keen at propagating coercions in the case of casts. | ||
let x = if true { 42 } else { 42u8 } as u16; | ||
let x = match true { true => 42, false => 42u8 } as u16; | ||
} |
46eb724
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.
saw approval from nikomatsakis
at nrc@46eb724
46eb724
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.
merging nick29581/rust/coerce-if = 46eb724 into auto
46eb724
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.
status: {"merge_sha": "9a91759b3c7edc28b7d74f6f8e828a3586305ab9"}
46eb724
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.
nick29581/rust/coerce-if = 46eb724 merged ok, testing candidate = 9a91759b
46eb724
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.
some tests failed:
failure: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-t/builds/2380
exception: http://buildbot.rust-lang.org/builders/auto-mac-32-opt/builds/2736
exception: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-t/builds/2732
exception: http://buildbot.rust-lang.org/builders/auto-linux-32-opt/builds/2723
exception: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-t/builds/2722
exception: http://buildbot.rust-lang.org/builders/auto-linux-64-opt/builds/2726
exception: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-t/builds/2718
exception: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android-t/builds/2718
exception: http://buildbot.rust-lang.org/builders/auto-win-32-opt/builds/2383
exception: http://buildbot.rust-lang.org/builders/auto-win-64-opt/builds/1222
exception: http://buildbot.rust-lang.org/builders/auto-win-64-nopt-t/builds/1216
46eb724
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.
saw approval from nikomatsakis
at nrc@46eb724
46eb724
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.
merging nick29581/rust/coerce-if = 46eb724 into auto
46eb724
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.
status: {"merge_sha": "c0b2885ee12b79c99ac8245edb6eebaaa8e7fef1"}
46eb724
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.
nick29581/rust/coerce-if = 46eb724 merged ok, testing candidate = c0b2885
46eb724
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.
all tests pass:
success: http://buildbot.rust-lang.org/builders/auto-mac-32-opt/builds/2738
success: http://buildbot.rust-lang.org/builders/auto-mac-64-opt/builds/2733
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-t/builds/2734
success: http://buildbot.rust-lang.org/builders/auto-linux-32-opt/builds/2725
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-t/builds/2724
success: http://buildbot.rust-lang.org/builders/auto-linux-64-opt/builds/2728
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-t/builds/2720
success: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android-t/builds/2720
success: http://buildbot.rust-lang.org/builders/auto-win-32-opt/builds/2386
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-t/builds/2383
success: http://buildbot.rust-lang.org/builders/auto-win-64-opt/builds/1225
success: http://buildbot.rust-lang.org/builders/auto-win-64-nopt-t/builds/1218
46eb724
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.
fast-forwarding master to auto = c0b2885
46eb724
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.
fast-forwarding master to auto = c0b2885