about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0261.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/error-codes/E0261.rs')
-rw-r--r--tests/ui/error-codes/E0261.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/error-codes/E0261.rs b/tests/ui/error-codes/E0261.rs
index f05e09aa0da..e37eab9501e 100644
--- a/tests/ui/error-codes/E0261.rs
+++ b/tests/ui/error-codes/E0261.rs
@@ -1,9 +1,9 @@
 fn foo(x: &'a str) { } //~ ERROR E0261
-                       //~| undeclared lifetime
+                       //~| NOTE undeclared lifetime
 
 struct Foo {
     x: &'a str, //~ ERROR E0261
-                //~| undeclared lifetime
+                //~| NOTE undeclared lifetime
 }
 
 fn main() {}