]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/const-tup-index-span.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / const-tup-index-span.rs
index 8c607fc7e32b2ecbfa091fff24cdcb5c781d1888..9d3c432d14878de269cf86ba9616dc7cc7c9d7af 100644 (file)
@@ -11,7 +11,7 @@
 // Test spans of errors
 
 const TUP: (usize,) = 5 << 64;
-//~^ ERROR: attempted left shift with overflow [E0250]
+//~^ ERROR: attempted to shift left with overflow [E0250]
 const ARR: [i32; TUP.0] = [];
 
 fn main() {