]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-30438-a.rs
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-30438-a.rs
index 441815de81d30b54f04ee649b97ca62b1fa3636f..0d4eb796ad9b02417de1ffcffbf103b133947bab 100644 (file)
@@ -1,13 +1,3 @@
-// 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.
-
 // Original regression test for Issue #30438.
 
 use std::ops::Index;
@@ -20,7 +10,7 @@ impl <'a> Index<usize> for Test<'a> {
     type Output = Test<'a>;
     fn index(&self, _: usize) -> &Self::Output {
         return &Test { s: &self.s};
-        //~^ ERROR: borrowed value does not live long enough
+        //~^ ERROR: cannot return reference to temporary value
     }
 }