2016-01-21 10:57:21 +01:00
|
|
|
// Copyright 2016 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 new Index error message for slices
|
2016-07-19 10:50:52 +02:00
|
|
|
// ignore-tidy-linelength
|
2016-01-21 10:57:21 +01:00
|
|
|
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
|
2016-05-16 23:16:52 +03:00
|
|
|
use std::ops::Index;
|
|
|
|
|
2016-01-21 10:57:21 +01:00
|
|
|
#[rustc_error]
|
|
|
|
fn main() {
|
|
|
|
let x = &[1, 2, 3] as &[i32];
|
2016-07-19 10:50:52 +02:00
|
|
|
x[1i32]; //~ ERROR E0277
|
|
|
|
x[..1i32]; //~ ERROR E0277
|
2016-01-21 10:57:21 +01:00
|
|
|
}
|