]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/diagnostics.rs
Merge VariantData and VariantData_
[rust.git] / src / librustc_trans / diagnostics.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![allow(non_snake_case)]
12
13 register_long_diagnostics! {
14
15 E0515: r##"
16 A constant index expression was out of bounds. Erroneous code example:
17
18 ```
19 let x = &[0, 1, 2][7]; // error: const index-expr is out of bounds
20 ```
21
22 Please specify a valid index (not inferior to 0 or superior to array length).
23 Example:
24
25 ```
26 let x = &[0, 1, 2][2]; // ok!
27 ```
28 "##,
29
30 }
31
32 register_diagnostics! {
33     E0510, // invalid use of `return_address` intrinsic: function does not use out pointer
34     E0511, // invalid monomorphization of `{}` intrinsic
35     E0512, // transmute called on types with potentially different sizes...
36 }