]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/consts/const-int-rotate.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / consts / const-int-rotate.rs
index e6f05338c849e64b65a19dd0baaa013dc4c4affd..3aacf854db1da974e509163450039191412df114 100644 (file)
@@ -1,14 +1,6 @@
-// Copyright 2018 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.
-
 fn main() {
-    let x: &'static i32 = &(5_i32.rotate_left(3)); //~ ERROR does not live long enough
-    let y: &'static i32 = &(5_i32.rotate_right(3)); //~ ERROR does not live long enough
+    let x: &'static i32 = &(5_i32.rotate_left(3));
+    //~^ ERROR temporary value dropped while borrowed
+    let y: &'static i32 = &(5_i32.rotate_right(3));
+    //~^ ERROR temporary value dropped while borrowed
 }