Urgau
Urgau
Not all items are displayed on small screens. Watch [my terminal](https://asciinema.org/a/n6JxLoZ5J23n9PTv2OiFbVeQC) and watch the match FRA/ARG. All goals and actions are not display.
This pull-request adds a test in `src/test/abi/` that test that target feature mix up with homogeneous floats is sound. This is basically is ripoff of [src/test/ui/simd/target-feature-mixup.rs](https://github.com/rust-lang/rust/blob/47d1cdb0bcac8e417071ce1929d261efe2399ae2/src/test/ui/simd/target-feature-mixup.rs) but for floats and...
From [`[rustdoc-json] paths is inconsistent and questionably useful`](https://github.com/rust-lang/rust/issues/93522): > **Problem:** Currently, the items `paths` includes is just the list of paths used in the rustdoc cache. This is implementation-dependent, misses...
This PR implements [RFC 3373: Avoid non-local definitions in functions](https://github.com/rust-lang/rust/issues/120363).
When using fluent inside the Rust compiler we came across an unfortunate limitation, fluent and more precisely `FluentNumber` doesn't support the full precision of all numbers it accepts. https://github.com/projectfluent/fluent-rs/blob/a2cef6bff4885623f638a6968e034ce1a296ba01/fluent-bundle/src/types/number.rs#L125-L129 This...
Partially addresses https://github.com/rust-lang/rust/issues/121264 by adding diagnostics items for PartialOrd and Ord methods, detecting such diagnostics items as "binary operation" and suggesting the correct replacement. I also took the opportunity to...
This blog post announce automatic checking of cfgs at compile-time (https://github.com/rust-lang/rfcs/pull/3013) by the Cargo (and Compiler) team. To be merged when https://github.com/rust-lang/cargo/pull/13571 (status: merged in Cargo) reaches nightly. **Currently scheduled...
# Proposal ## Problem statement As discussed in the 2024-01-03 T-lang triage meeting, equality for function pointers is awkward (due to "equal" functions being merged together or duplicated across different...
Rust [RFC 3373: Avoid non-local definitions in functions](https://github.com/rust-lang/rfcs/pull/3373) was accepted and it's implementation at https://github.com/rust-lang/rust/pull/120393 found that this crate would be affected by it. To be more precise users of...