]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/seq-args.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / seq-args.stderr
index 068f08eebe76cc8a1dc116135e7b9350886b1651..81ba1abcd6dcbe1e207fa3fa4cb6429fb4012200 100644 (file)
@@ -1,15 +1,15 @@
-error[E0244]: wrong number of type arguments: expected 0, found 1
-  --> $DIR/seq-args.rs:14:13
+error[E0107]: wrong number of type arguments: expected 0, found 1
+  --> $DIR/seq-args.rs:4:13
    |
-LL | impl<T> seq<T> for Vec<T> { //~ ERROR wrong number of type arguments
+LL | impl<T> Seq<T> for Vec<T> { //~ ERROR wrong number of type arguments
    |             ^ unexpected type argument
 
-error[E0244]: wrong number of type arguments: expected 0, found 1
-  --> $DIR/seq-args.rs:17:10
+error[E0107]: wrong number of type arguments: expected 0, found 1
+  --> $DIR/seq-args.rs:7:10
    |
-LL | impl seq<bool> for u32 { //~ ERROR wrong number of type arguments
+LL | impl Seq<bool> for u32 { //~ ERROR wrong number of type arguments
    |          ^^^^ unexpected type argument
 
 error: aborting due to 2 previous errors
 
-For more information about this error, try `rustc --explain E0244`.
+For more information about this error, try `rustc --explain E0107`.