Skip to content

Commit 0776778

Browse files
committed
Bless test output changes
1 parent 696472a commit 0776778

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/test/ui/const-generics/generic_const_exprs/issue-69654.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0423]: expected value, found type parameter `T`
44
LL | impl<T> Bar<T> for [u8; T] {}
55
| - ^ not a value
66
| |
7-
| found this type pararmeter
7+
| found this type parameter
88

99
error[E0599]: the function or associated item `foo` exists for struct `Foo<_>`, but its trait bounds were not satisfied
1010
--> $DIR/issue-69654.rs:17:10

src/test/ui/lexical-scopes.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0574]: expected struct, variant or union type, found type parameter `T`
22
--> $DIR/lexical-scopes.rs:3:13
33
|
44
LL | fn f<T>() {
5-
| - found this type pararmeter
5+
| - found this type parameter
66
LL | let t = T { i: 0 };
77
| ^ not a struct, variant or union type
88

src/test/ui/resolve/point-at-type-parameter-shadowing-another-type.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0574]: expected struct, variant or union type, found type parameter `Baz`
22
--> $DIR/point-at-type-parameter-shadowing-another-type.rs:16:13
33
|
44
LL | impl<Baz> Foo<Baz> for Bar {
5-
| --- found this type pararmeter
5+
| --- found this type parameter
66
...
77
LL | Baz { num } => num,
88
| ^^^ not a struct, variant or union type

src/test/ui/span/issue-35987.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0404]: expected trait, found type parameter `Add`
44
LL | impl<T: Clone, Add> Add for Foo<T> {
55
| --- ^^^ not a trait
66
| |
7-
| found this type pararmeter
7+
| found this type parameter
88
|
99
help: consider importing this trait instead
1010
|

0 commit comments

Comments
 (0)