rustc-dev-guide
rustc-dev-guide copied to clipboard
A guide to how rustc works and how to contribute to it.
> https://github.com/rust-lang/rust/pull/132794 seems to have modified the behavior and path for Helix's build directory, so I think this needs to be updated slightly? _Originally posted by @connortsui20 in https://github.com/rust-lang/rustc-dev-guide/issues/2106#issuecomment-2837371398_
Video: https://www.youtube.com/watch?v=hmV66tB79LM
Video: https://www.youtube.com/watch?v=Ny2928cGDoM
Video: https://www.youtube.com/watch?v=rZqS4bLPL24 This issue has been assigned to @juanbono via [this comment](https://github.com/rust-lang/rustc-guide/issues/365#issuecomment-506992096).
Video: https://www.youtube.com/watch?v=MBWtbDifPeU
we have a static site built from markdown sources. as a reviewer it would be nice to easily view the rendered html for a PR, not just the raw markdown....
https://github.com/rust-lang/rust/commit/de17ec9dae991891834febb84e658373d5748548/https://github.com/rust-lang/rust/pull/117204 updated the `gate_feature_*` macros, but https://github.com/rust-lang/rustc-dev-guide/blob/5d24aedfa53f7ca70c1d48327bbef6bef7600471/src/stabilization_guide.md?plain=1#L144-L160 still mentions `gate_feature_post`.
I'm not sure it's supposed to compile, but this example: ``` fn foo &'a u32 { a } fn bar(a: fn(&u32) -> T) -> T { a(&10) } fn main()...
previously, they gave a warning about being "invalid filters". that seems like a github bug, because they were definitely present in the clippy and reference repos, but i worked around...