reference icon indicating copy to clipboard operation
reference copied to clipboard

The Rust Reference

Results 338 reference issues
Sort by recently updated
recently updated
newest added

r? @ehuss

New Content
RFC Stabilization Docs
A-expressions
I-lang-nominated

As part of the stabilisation work: https://github.com/rust-lang/rust/issues/74727 this PR adds some documentation for the instruction set attribute. I've popped this in the codegen attributes as that seemed rather self-explanatory. It's...

S-waiting-on-stabilization

There really isn't a *ton* to add here. Almost all of the syntax related to GATs falls out from existing syntax.

Tracking issue: https://github.com/rust-lang/rust/issues/93333

S-waiting-on-stabilization

In `type-coercions.md`, the following is really not clear: ``` * TyCtor(`T`) to TyCtor(`U`), where TyCtor(`T`) is one of - `&T` - `&mut T` - `*const T` - `*mut T` -...

cc https://github.com/rust-lang/rust/pull/100747/files#r962488178

cc https://github.com/rust-lang/rust/issues/65991

S-waiting-on-stabilization

In https://doc.rust-lang.org/reference/expressions/method-call-expr.html, we find: > Then, for each candidate type `T`, search for a visible method with a receiver of that type in the following places: > * `T`'s inherent...

A-resolve
A-visibility

[STRING_LITERAL](https://doc.rust-lang.org/reference/tokens.html#string-literals) definition says: ![Screenshot from 2022-08-16 22-34-51](https://user-images.githubusercontent.com/91457298/184971506-82887a9e-9c4f-4455-93a4-9ad0ed1539c2.png) Where [_IsolatedCR_](https://doc.rust-lang.org/reference/comments.html#comments) is: ![Screenshot from 2022-08-16 22-43-45](https://user-images.githubusercontent.com/91457298/184969910-96a2a115-7d25-457a-943f-54b3e64acb6b.png) And [ASCII_ESCAPE](https://doc.rust-lang.org/reference/tokens.html#ascii-escapes) is: ![Screenshot from 2022-08-16 22-50-17](https://user-images.githubusercontent.com/91457298/184972447-637d852c-2db9-4479-9877-cedd0fb17af9.png) But look, there is no compile time error: ![Screenshot...

Easy
A-grammar