<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/ui/empty/empty-struct-tuple-pat.stderr, branch 1.56.1</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.56.1</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.56.1'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2021-08-11T09:46:24+00:00</updated>
<entry>
<title>Modify structured suggestion output</title>
<updated>2021-08-11T09:46:24+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2021-06-22T02:07:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=99f2977031706dfef6730764d359b9e5d0f673b4'/>
<id>urn:sha1:99f2977031706dfef6730764d359b9e5d0f673b4</id>
<content type='text'>
* On suggestions that include deletions, use a diff inspired output format
* When suggesting addition, use `+` as underline
* Color highlight modified span
</content>
</entry>
<entry>
<title>Remove trailing whitespace from error messages</title>
<updated>2021-08-04T08:48:30+00:00</updated>
<author>
<name>Fabian Wolff</name>
<email>fabian.wolff@alumni.ethz.ch</email>
</author>
<published>2021-06-10T11:52:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f8372f876c66ae4df96638bbfdf9ac7baffcf3a6'/>
<id>urn:sha1:f8372f876c66ae4df96638bbfdf9ac7baffcf3a6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Detect tuple variants used as struct pattern and suggest correct pattern</title>
<updated>2020-08-11T17:23:52+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2020-08-10T00:52:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=17ada052e7f8b785eaadb6fb49197357ad644d65'/>
<id>urn:sha1:17ada052e7f8b785eaadb6fb49197357ad644d65</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Point at item definition in foreign crates</title>
<updated>2020-08-10T19:04:10+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2020-08-10T04:14:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6c0755a7dcbc087309035cb53893dd478bd3b8b1'/>
<id>urn:sha1:6c0755a7dcbc087309035cb53893dd478bd3b8b1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Point at the span for the definition of crate foreign ADTs</title>
<updated>2020-01-10T19:40:29+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2019-10-15T00:20:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=39c96a0f534366b3970ff0f8cd831be4386961dc'/>
<id>urn:sha1:39c96a0f534366b3970ff0f8cd831be4386961dc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Point at local similarly named element and tweak references to variants</title>
<updated>2019-10-27T18:50:43+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2019-10-15T00:20:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b26ddb8af37362e33c45c78c9c91a3c5cdabfe7e'/>
<id>urn:sha1:b26ddb8af37362e33c45c78c9c91a3c5cdabfe7e</id>
<content type='text'>
Point at the span for the definition of ADTs internal to the current
crate.

Look at the leading char of the ident to determine whether we're
expecting a likely fn or any of a fn, a tuple struct or a tuple variant.

Turn fn `add_typo_suggestion` into a `Resolver` method.
</content>
</entry>
<entry>
<title>Point at definition when misusing ADT</title>
<updated>2019-09-22T18:27:55+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2019-09-22T18:27:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2ae90165534f18aa5020ae84f5e3768e99139069'/>
<id>urn:sha1:2ae90165534f18aa5020ae84f5e3768e99139069</id>
<content type='text'>
When given `struct Foo(usize)` and using it as `Foo {}` or `Foo`, point at
`Foo`'s definition in the error.
</content>
</entry>
<entry>
<title>unify errors for tuple/struct variants</title>
<updated>2019-09-21T15:38:35+00:00</updated>
<author>
<name>Guanqun Lu</name>
<email>guanqun.lu@gmail.com</email>
</author>
<published>2019-09-21T15:36:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e001c5f9d894a66722db061ecbbd224973dc0fb8'/>
<id>urn:sha1:e001c5f9d894a66722db061ecbbd224973dc0fb8</id>
<content type='text'>
fix #63983
</content>
</entry>
<entry>
<title>hide `--explain` hint if error has no extended info</title>
<updated>2019-04-18T17:29:28+00:00</updated>
<author>
<name>Andy Russell</name>
<email>arussell123@gmail.com</email>
</author>
<published>2019-04-17T17:26:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b6f148c8bdf2dd1beb11445441366934f8b61f74'/>
<id>urn:sha1:b6f148c8bdf2dd1beb11445441366934f8b61f74</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update tests</title>
<updated>2019-03-11T20:10:26+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2019-03-09T12:03:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=fa72a81bea27f1fda4287475e4cc2f684c971e7f'/>
<id>urn:sha1:fa72a81bea27f1fda4287475e4cc2f684c971e7f</id>
<content type='text'>
</content>
</entry>
</feed>
