<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/tests/ui/parser/missing-fat-arrow.stderr, branch try-perf</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=try-perf</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=try-perf'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2023-10-04T01:35:07+00:00</updated>
<entry>
<title>review comments</title>
<updated>2023-10-04T01:35:07+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2023-10-04T01:35:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8fd345dd4b85b6758896995beb5b0417efd52364'/>
<id>urn:sha1:8fd345dd4b85b6758896995beb5b0417efd52364</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Detect missing `=&gt;` after match guard during parsing</title>
<updated>2023-10-03T21:21:02+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2023-10-03T21:21:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=745c1ea4388864d6a832aeacb9fc3b9db1ab9c2f'/>
<id>urn:sha1:745c1ea4388864d6a832aeacb9fc3b9db1ab9c2f</id>
<content type='text'>
```
error: expected one of `,`, `:`, or `}`, found `.`
  --&gt; $DIR/missing-fat-arrow.rs:25:14
   |
LL |         Some(a) if a.value == b {
   |                               - while parsing this struct
LL |             a.value = 1;
   |             -^ expected one of `,`, `:`, or `}`
   |             |
   |             while parsing this struct field
   |
help: try naming a field
   |
LL |             a: a.value = 1;
   |             ++
help: you might have meant to start a match arm after the match guard
   |
LL |         Some(a) if a.value == b =&gt; {
   |                                 ++
```

Fix #78585.
</content>
</entry>
</feed>
