Ryan Scheel
Ryan Scheel
The rpl_lusersunknown message isn't an auth request. It's telling you that there are three users who have this unknown status. Given the lower number, I think they're just services bots....
You should file an issue against rust-lang/rust about that. The reference just documents what's already there.
@elichai Perhaps ask in the compiler channel on Zulip?
@joshlf I don't think the discriminant matters much there. Once it's checked in the match and you are inside it, you're no longer accessing it. You are accessing `x` still...
I'm unchecking tuple expressions since I no longer believe they are currently at the quality needed. That said, I'm currently working on that page. It was originally checked when the...
Checking tuples back off with #990 merged.
And type or trait is special if it requires or is a dependency of compiler machinery. The types you think are missing are probably the [operator traits](https://doc.rust-lang.org/nightly/reference/special-types-and-traits.html#operator-traits) and we should...
Just to add a couple more questions: 1. Do we want to call them "names" or "bindings"? 2. Can we pick a better term than "name resolution"? I know it's...
> AFAIK, the term "bindings" is only used for local variables in the user-facing documentation, Yes. That is entirely correct and I am way too tired.
`rustc` error messages call elements fields as well: ``` error[E0609]: no field `1` on type `[(); 2]` ```