summaryrefslogtreecommitdiffstats
path: root/tests/ui/object-safety/object-safety-no-static.curr.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/object-safety/object-safety-no-static.curr.stderr')
-rw-r--r--tests/ui/object-safety/object-safety-no-static.curr.stderr1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/ui/object-safety/object-safety-no-static.curr.stderr b/tests/ui/object-safety/object-safety-no-static.curr.stderr
index 1b025229e..b40470b45 100644
--- a/tests/ui/object-safety/object-safety-no-static.curr.stderr
+++ b/tests/ui/object-safety/object-safety-no-static.curr.stderr
@@ -11,6 +11,7 @@ LL | trait Foo {
| --- this trait cannot be made into an object...
LL | fn foo() {}
| ^^^ ...because associated function `foo` has no `self` parameter
+ = help: only type `Bar` implements the trait, consider using it directly instead
help: consider turning `foo` into a method by giving it a `&self` argument
|
LL | fn foo(&self) {}