<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/tests/ui/async-await/issues, 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>2025-08-06T23:59:47+00:00</updated>
<entry>
<title>Print thread ID in panic message if thread name is unknown</title>
<updated>2025-08-06T23:59:47+00:00</updated>
<author>
<name>Trevor Gross</name>
<email>tmgross@umich.edu</email>
</author>
<published>2023-09-11T04:59:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=289fe36d373c5a13fa7f1b93f39ff88425ab2351'/>
<id>urn:sha1:289fe36d373c5a13fa7f1b93f39ff88425ab2351</id>
<content type='text'>
`panic!` does not print any identifying information for threads that are
unnamed. However, in many cases, the thread ID can be determined.

This changes the panic message from something like this:

    thread '&lt;unnamed&gt;' panicked at src/main.rs:3:5:
    explicit panic

To something like this:

    thread '&lt;unnamed&gt;' (0xff9bf) panicked at src/main.rs:3:5:
    explicit panic

Stack overflow messages are updated as well.

This change applies to both named and unnamed threads. The ID printed is
the OS integer thread ID rather than the Rust thread ID, which should
also be what debuggers print.
</content>
</entry>
<entry>
<title>add `nonpoison::mutex` implementation</title>
<updated>2025-07-29T08:32:15+00:00</updated>
<author>
<name>Connor Tsui</name>
<email>connor.tsui20@gmail.com</email>
</author>
<published>2025-07-23T11:47:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3bdc228c103d72a61d9639d6fd0dd5c1566ec37f'/>
<id>urn:sha1:3bdc228c103d72a61d9639d6fd0dd5c1566ec37f</id>
<content type='text'>
Adds the equivalent `nonpoison` types to the `poison::mutex` module.
These types and implementations are gated under the `nonpoison_mutex`
feature gate.

Also blesses the ui tests that now have a name conflicts (because these
types no longer have unique names). The full path distinguishes the
different types.

Co-authored-by: Aandreba &lt;aandreba@gmail.com&gt;
Co-authored-by: Trevor Gross &lt;tmgross@umich.edu&gt;
</content>
</entry>
<entry>
<title>Remove uncessary parens in closure body with unused lint</title>
<updated>2025-07-10T01:25:56+00:00</updated>
<author>
<name>yukang</name>
<email>moorekang@gmail.com</email>
</author>
<published>2025-06-29T03:40:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=93db9e7ee01d61cb97b4f7b3d61903477910cae2'/>
<id>urn:sha1:93db9e7ee01d61cb97b4f7b3d61903477910cae2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Report infer ty errors during hir ty lowering</title>
<updated>2025-06-27T07:51:38+00:00</updated>
<author>
<name>Oli Scherer</name>
<email>github333195615777966@oli-obk.de</email>
</author>
<published>2025-06-06T09:28:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c51f05be3094651711072e43bacac47cf7426be9'/>
<id>urn:sha1:c51f05be3094651711072e43bacac47cf7426be9</id>
<content type='text'>
This centralizes the placeholder type error reporting in one location, but it also exposes the granularity at which we convert things from hir to ty more. E.g. previously infer types in where bounds were errored together with the function signature, but now they are independent.</content>
</entry>
<entry>
<title>Rollup merge of #141610 - BoxyUwU:stabilize_generic_arg_infer, r=lcnr,traviscross</title>
<updated>2025-06-18T16:06:49+00:00</updated>
<author>
<name>Jakub Beránek</name>
<email>berykubik@gmail.com</email>
</author>
<published>2025-06-18T16:06:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0093ca5c760df11bfab0c9c556addef7b508acbc'/>
<id>urn:sha1:0093ca5c760df11bfab0c9c556addef7b508acbc</id>
<content type='text'>
Stabilize `feature(generic_arg_infer)`

Fixes rust-lang/rust#85077

r? lcnr

cc ````@rust-lang/project-const-generics````
</content>
</entry>
<entry>
<title>stabilize gai</title>
<updated>2025-06-11T14:30:15+00:00</updated>
<author>
<name>Boxy</name>
<email>rust@boxyuwu.dev</email>
</author>
<published>2025-06-11T14:30:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=fe04ae7fafab80cebd01ce9c199248556ec3654f'/>
<id>urn:sha1:fe04ae7fafab80cebd01ce9c199248556ec3654f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make E0621 missing lifetime suggestion verbose</title>
<updated>2025-06-09T19:55:00+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2025-06-04T21:10:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3fce086d79afd9bc5b52a13e051934694cf196c1'/>
<id>urn:sha1:3fce086d79afd9bc5b52a13e051934694cf196c1</id>
<content type='text'>
```
error[E0621]: explicit lifetime required in the type of `x`
  --&gt; $DIR/42701_one_named_and_one_anonymous.rs:10:9
   |
LL |         &amp;*x
   |         ^^^ lifetime `'a` required
   |
help: add explicit lifetime `'a` to the type of `x`
   |
LL | fn foo2&lt;'a&gt;(a: &amp;'a Foo, x: &amp;'a i32) -&gt; &amp;'a i32 {
   |                             ++
```
</content>
</entry>
<entry>
<title>Replace `elided_named_lifetimes` with `mismatched_lifetime_syntaxes`</title>
<updated>2025-06-04T14:40:04+00:00</updated>
<author>
<name>Jake Goulding</name>
<email>jake.goulding@gmail.com</email>
</author>
<published>2025-03-17T16:43:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d35ad948492146f0811d43606db66c65c55980a9'/>
<id>urn:sha1:d35ad948492146f0811d43606db66c65c55980a9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>replace `//@ compile-flags: --edition` with `//@ edition`</title>
<updated>2025-04-10T07:56:37+00:00</updated>
<author>
<name>Pietro Albini</name>
<email>pietro.albini@ferrous-systems.com</email>
</author>
<published>2025-04-08T13:17:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cd371b90e25a5923f8106cea55b5705061974139'/>
<id>urn:sha1:cd371b90e25a5923f8106cea55b5705061974139</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Implement `#[define_opaque]` attribute for functions.</title>
<updated>2025-03-11T12:05:02+00:00</updated>
<author>
<name>Oli Scherer</name>
<email>git-spam-no-reply9815368754983@oli-obk.de</email>
</author>
<published>2024-07-26T10:04:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cb4751d4b87e1c8ebdeb381abe3785486a59968e'/>
<id>urn:sha1:cb4751d4b87e1c8ebdeb381abe3785486a59968e</id>
<content type='text'>
</content>
</entry>
</feed>
