about summary refs log tree commit diff
path: root/tests/ui/traits/self-without-lifetime-constraint.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/traits/self-without-lifetime-constraint.rs')
-rw-r--r--tests/ui/traits/self-without-lifetime-constraint.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/ui/traits/self-without-lifetime-constraint.rs b/tests/ui/traits/self-without-lifetime-constraint.rs
index 99013d32ab8..50901173b76 100644
--- a/tests/ui/traits/self-without-lifetime-constraint.rs
+++ b/tests/ui/traits/self-without-lifetime-constraint.rs
@@ -15,6 +15,7 @@ impl<'a> ValueRef<'a> {
         match *self {
             ValueRef::Text(t) => {
                 std::str::from_utf8(t).map_err(|_| FromSqlError::InvalidType).map(|x| (x, &x))
+                //~^ ERROR: cannot return value referencing function parameter `x`
             }
             _ => Err(FromSqlError::InvalidType),
         }