]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/consts/const-eval/const-eval-overflow2b.rs
Auto merge of #81132 - bugadani:map-prealloc, r=matthewjasper
[rust.git] / src / test / ui / consts / const-eval / const-eval-overflow2b.rs
index e87952ab0f438f9e5fc1bab7acf9056952b3691a..9c3ad8ef9b44e5a9b9dae2b98d1721b703d36939 100644 (file)
      i8::MAX + 1,
      );
  //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
 
 const VALS_I16: (i16,) =
     (
      i16::MAX + 1,
      );
  //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
 
 const VALS_I32: (i32,) =
     (
      i32::MAX + 1,
      );
  //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
 
 const VALS_I64: (i64,) =
     (
      i64::MAX + 1,
      );
  //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
 
 const VALS_U8: (u8,) =
     (
      u8::MAX + 1,
      );
  //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
 
 const VALS_U16: (u16,) = (
      u16::MAX + 1,
      );
  //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
 
 const VALS_U32: (u32,) = (
      u32::MAX + 1,
      );
  //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
 
 const VALS_U64: (u64,) =
     (
      u64::MAX + 1,
      );
  //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
 
 fn main() {
     foo(VALS_I8);