about summary refs log tree commit diff
path: root/tests/ui/trait-bounds/impl-bound-with-references-error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/trait-bounds/impl-bound-with-references-error.rs')
-rw-r--r--tests/ui/trait-bounds/impl-bound-with-references-error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/trait-bounds/impl-bound-with-references-error.rs b/tests/ui/trait-bounds/impl-bound-with-references-error.rs
index e5d0a1aaed0..5ba35da8383 100644
--- a/tests/ui/trait-bounds/impl-bound-with-references-error.rs
+++ b/tests/ui/trait-bounds/impl-bound-with-references-error.rs
@@ -13,7 +13,7 @@ where
     //~^ ERROR cannot find type `Cow` in this scope [E0412]
 {
     fn from(text: T) -> Self {
-        LabelText::Plain(text.into())
+        LabelText::Plain(text.into()) //~ ERROR expected function, found `LabelText`
     }
 }