]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/consts/const-err-multi.rs
Update tests to remove old numeric constants
[rust.git] / src / test / ui / consts / const-err-multi.rs
index 5cf3114c64a6b7daea0c229e741d656c59b72bd8..ce74fae98162d4ff486bab8ff072a57fcf96e310 100644 (file)
@@ -1,16 +1,6 @@
-// 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.
-
 #![deny(const_err)]
 
-pub const A: i8 = -std::i8::MIN;
+pub const A: i8 = -i8::MIN;
 //~^ ERROR const_err
 pub const B: i8 = A;
 //~^ ERROR const_err