-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fbde112
commit 080e625
Showing
3 changed files
with
58 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright 2012 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. | ||
|
||
#![feature(tuple_indexing)] | ||
|
||
const TUP: (uint,) = (42,); | ||
|
||
fn main() { | ||
let a: [int, ..TUP.1]; | ||
//~^ ERROR expected constant expr for array length: tuple index out of bounds | ||
} |
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,17 @@ | ||
// Copyright 2012 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. | ||
|
||
struct MyStruct { field: uint } | ||
const STRUCT: MyStruct = MyStruct { field: 42 }; | ||
|
||
fn main() { | ||
let a: [int, ..STRUCT.nonexistent_field]; | ||
//~^ ERROR expected constant expr for array length: nonexistent struct field | ||
} |
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,23 @@ | ||
// 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. | ||
|
||
#![feature(tuple_indexing)] | ||
|
||
struct MyStruct { field: uint } | ||
const STRUCT: MyStruct = MyStruct { field: 42 }; | ||
const TUP: (uint,) = (43,); | ||
|
||
fn main() { | ||
let a = [0i, ..STRUCT.field]; | ||
let b = [0i, ..TUP.0]; | ||
|
||
assert!(a.len() == 42); | ||
assert!(b.len() == 43); | ||
} |
080e625
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 alexcrichton
at https://github.com/aochagavia/rust/commit/080e625dae129aad7db4e69d74fa0f767f700325
080e625
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 aochagavia/rust/const = 080e625 into auto
080e625
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.
aochagavia/rust/const = 080e625 merged ok, testing candidate = c98819e1
080e625
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:
exception: http://buildbot.rust-lang.org/builders/auto-mac-32-opt/builds/2467
exception: http://buildbot.rust-lang.org/builders/auto-mac-64-opt/builds/2464
exception: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-c/builds/2457
exception: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-t/builds/2464
exception: http://buildbot.rust-lang.org/builders/auto-linux-32-opt/builds/2458
exception: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-c/builds/2457
exception: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-t/builds/2457
exception: http://buildbot.rust-lang.org/builders/auto-linux-64-opt/builds/2461
exception: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-c/builds/2454
exception: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-t/builds/2453
exception: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android-t/builds/2456
exception: http://buildbot.rust-lang.org/builders/auto-win-32-opt/builds/2118
exception: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-t/builds/2114
exception: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-c/builds/2120
exception: http://buildbot.rust-lang.org/builders/auto-win-64-opt/builds/957
exception: http://buildbot.rust-lang.org/builders/auto-win-64-nopt-t/builds/951
exception: http://buildbot.rust-lang.org/builders/auto-win-64-nopt-c/builds/947
080e625
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 alexcrichton
at https://github.com/aochagavia/rust/commit/080e625dae129aad7db4e69d74fa0f767f700325
080e625
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 aochagavia/rust/const = 080e625 into auto
080e625
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.
aochagavia/rust/const = 080e625 merged ok, testing candidate = 1b30b612