2015-03-11 18:19:37 -05:00
|
|
|
// Copyright 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.
|
|
|
|
|
2016-05-26 14:09:48 -05:00
|
|
|
// ignore-tidy-linelength
|
|
|
|
|
2015-11-20 03:43:04 -06:00
|
|
|
#![feature(const_indexing)]
|
|
|
|
|
2015-03-11 18:19:37 -05:00
|
|
|
const FOO: [u32; 3] = [1, 2, 3];
|
2015-11-18 03:57:52 -06:00
|
|
|
const BAR: u32 = FOO[5]; // no error, because the error below occurs before regular const eval
|
|
|
|
|
|
|
|
const BLUB: [u32; FOO[4]] = [5, 6];
|
2016-07-19 16:02:56 -05:00
|
|
|
//~^ ERROR constant evaluation error [E0080]
|
|
|
|
//~| index out of bounds: the len is 3 but the index is 4
|
2015-03-11 18:19:37 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = BAR;
|
|
|
|
}
|