summary refs log tree commit diff
path: root/src/test/compile-fail/ufcs-qpath-missing-params.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/ufcs-qpath-missing-params.rs')
-rw-r--r--src/test/compile-fail/ufcs-qpath-missing-params.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/compile-fail/ufcs-qpath-missing-params.rs b/src/test/compile-fail/ufcs-qpath-missing-params.rs
index 5fa66eb98e1..f4e18265fd9 100644
--- a/src/test/compile-fail/ufcs-qpath-missing-params.rs
+++ b/src/test/compile-fail/ufcs-qpath-missing-params.rs
@@ -12,6 +12,5 @@ use std::borrow::IntoCow;
 
 fn main() {
     <String as IntoCow>::into_cow("foo".to_string());
-    //~^ ERROR wrong number of type arguments: expected 2, found 0
+    //~^ ERROR wrong number of type arguments: expected 1, found 0
 }
-