23 lines
775 B
Rust
23 lines
775 B
Rust
|
// 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.
|
||
|
|
||
|
#![allow(non_snake_case)]
|
||
|
|
||
|
// Error messages for EXXXX errors.
|
||
|
// Each message should start and end with a new line, and be wrapped to 80 characters.
|
||
|
// In vim you can `:set tw=80` and use `gq` to wrap paragraphs. Use `:set tw=0` to disable.
|
||
|
register_long_diagnostics! {
|
||
|
E0660: r##"
|
||
|
"##,
|
||
|
|
||
|
E0661: r##"
|
||
|
"##,
|
||
|
}
|