diff options
| author | Esteban Kuber <esteban@kuber.com.ar> | 2022-03-26 23:14:47 +0000 |
|---|---|---|
| committer | Esteban Kuber <esteban@kuber.com.ar> | 2022-04-04 21:06:35 +0000 |
| commit | e2bba0708a1e4b0c21f94de56c2bd5d66d3b825f (patch) | |
| tree | f69b605da80489e297384a9fdde5cc99396f4e8c /src/test/ui/lexer | |
| parent | 883b93c7b7eb02ec85f4b8f9fb129efc403d4fb2 (diff) | |
| download | rust-e2bba0708a1e4b0c21f94de56c2bd5d66d3b825f.tar.gz rust-e2bba0708a1e4b0c21f94de56c2bd5d66d3b825f.zip | |
Fix list length
Diffstat (limited to 'src/test/ui/lexer')
| -rw-r--r-- | src/test/ui/lexer/lex-bad-char-literals-6.stderr | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/ui/lexer/lex-bad-char-literals-6.stderr b/src/test/ui/lexer/lex-bad-char-literals-6.stderr index 0e1851d292c..9df6c92d1e5 100644 --- a/src/test/ui/lexer/lex-bad-char-literals-6.stderr +++ b/src/test/ui/lexer/lex-bad-char-literals-6.stderr @@ -43,6 +43,10 @@ LL | if x == y {} <&'a str as PartialEq<String>> <&'b str as PartialEq<Cow<'a, str>>> <str as PartialEq<Cow<'a, str>>> + <str as PartialEq<OsStr>> + <str as PartialEq<OsString>> + <str as PartialEq<String>> + <str as PartialEq> and 4 others error[E0308]: mismatched types @@ -65,6 +69,10 @@ LL | if x == z {} <&'a str as PartialEq<String>> <&'b str as PartialEq<Cow<'a, str>>> <str as PartialEq<Cow<'a, str>>> + <str as PartialEq<OsStr>> + <str as PartialEq<OsString>> + <str as PartialEq<String>> + <str as PartialEq> and 4 others error: aborting due to 6 previous errors |
