<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/ui/fmt/ifmt-unimpl.stderr, branch master</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=master</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=master'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2023-01-11T09:32:08+00:00</updated>
<entry>
<title>Move /src/test to /tests</title>
<updated>2023-01-11T09:32:08+00:00</updated>
<author>
<name>Albert Larsan</name>
<email>74931857+albertlarsan68@users.noreply.github.com</email>
</author>
<published>2023-01-05T08:13:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cf2dff2b1e3fa55fa5415d524200070d0d7aacfe'/>
<id>urn:sha1:cf2dff2b1e3fa55fa5415d524200070d0d7aacfe</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make some diagnostics not depend on the source of what they reference being available</title>
<updated>2022-12-13T09:48:22+00:00</updated>
<author>
<name>Oli Scherer</name>
<email>git-spam-no-reply9815368754983@oli-obk.de</email>
</author>
<published>2022-12-09T15:56:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cb26b35b12d810d7a8215869d9e434c4b0c7f25c'/>
<id>urn:sha1:cb26b35b12d810d7a8215869d9e434c4b0c7f25c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Reword "Required because of the requirements on the impl of ..."</title>
<updated>2022-08-18T20:08:08+00:00</updated>
<author>
<name>Andy Wang</name>
<email>cbeuw.andy@gmail.com</email>
</author>
<published>2022-08-15T20:31:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=84a199369b611f2140e1b6f20dce9e2d40ad37df'/>
<id>urn:sha1:84a199369b611f2140e1b6f20dce9e2d40ad37df</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Mention first and last macro in backtrace</title>
<updated>2022-07-19T03:07:54+00:00</updated>
<author>
<name>Michael Goulet</name>
<email>michael@errs.io</email>
</author>
<published>2022-06-21T02:25:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=01b2379e4902658de68fcdca2a15b48fe4d57875'/>
<id>urn:sha1:01b2379e4902658de68fcdca2a15b48fe4d57875</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Mention implementers of unsatisfied trait</title>
<updated>2022-04-04T21:01:42+00:00</updated>
<author>
<name>Esteban Kuber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2021-12-13T20:56:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3aac307ca62f6d6c5b3612d3dfe80b6eeae8ba15'/>
<id>urn:sha1:3aac307ca62f6d6c5b3612d3dfe80b6eeae8ba15</id>
<content type='text'>
When encountering an unsatisfied trait bound, if there are no other
suggestions, mention all the types that *do* implement that trait:

```
error[E0277]: the trait bound `f32: Foo` is not satisfied
  --&gt; $DIR/impl_wf.rs:22:6
   |
LL | impl Baz&lt;f32&gt; for f32 { }
   |      ^^^^^^^^ the trait `Foo` is not implemented for `f32`
   |
   = help: the following other types implement trait `Foo`:
             Option&lt;T&gt;
             i32
             str
note: required by a bound in `Baz`
  --&gt; $DIR/impl_wf.rs:18:31
   |
LL | trait Baz&lt;U: ?Sized&gt; where U: Foo { }
   |                               ^^^ required by this bound in `Baz`
```

Mention implementers of traits in `ImplObligation`s.

Do not mention other `impl`s for closures, ranges and `?`.
</content>
</entry>
<entry>
<title>Create `core::fmt::ArgumentV1` with generics instead of fn pointer</title>
<updated>2022-01-29T13:52:19+00:00</updated>
<author>
<name>Gary Guo</name>
<email>gary@garyguo.net</email>
</author>
<published>2021-10-17T23:41:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a832f5f7bc33002f2b983b0e05bd3cb98f899ed2'/>
<id>urn:sha1:a832f5f7bc33002f2b983b0e05bd3cb98f899ed2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Do not mention associated items when they introduce an obligation</title>
<updated>2021-11-20T19:19:31+00:00</updated>
<author>
<name>Esteban Kuber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2021-10-12T14:18:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=563db4245b5373794be8e06ea878f81661888fa0'/>
<id>urn:sha1:563db4245b5373794be8e06ea878f81661888fa0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Various diagnostics clean ups/tweaks</title>
<updated>2021-07-19T15:43:35+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2021-07-17T18:13:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ba052bd8de1459acb6809215b0bedf4ea476ef9a'/>
<id>urn:sha1:ba052bd8de1459acb6809215b0bedf4ea476ef9a</id>
<content type='text'>
* Always point at macros, including derive macros
* Point at non-local items that introduce a trait requirement
* On private associated item, point at definition
</content>
</entry>
<entry>
<title>Show macro name in 'this error originates in macro' message</title>
<updated>2021-05-12T23:03:06+00:00</updated>
<author>
<name>Aaron Hill</name>
<email>aa1ronham@gmail.com</email>
</author>
<published>2021-02-13T19:52:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0dd9f118d973bb077c6ff0e2a57421ca2eecb81c'/>
<id>urn:sha1:0dd9f118d973bb077c6ff0e2a57421ca2eecb81c</id>
<content type='text'>
When there are multiple macros in use, it can be difficult to tell
which one was responsible for producing an error.
</content>
</entry>
<entry>
<title>Move format machinery tests to where they belong</title>
<updated>2020-12-04T13:22:36+00:00</updated>
<author>
<name>Aleksey Kladov</name>
<email>aleksey.kladov@gmail.com</email>
</author>
<published>2020-12-04T13:22:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=356ea6b5aa76df23f12a3f11725517c29872a31e'/>
<id>urn:sha1:356ea6b5aa76df23f12a3f11725517c29872a31e</id>
<content type='text'>
</content>
</entry>
</feed>
