--- note_id: XYr1BrOWSiqCrl8RCWXRaQ --- # Pull requests S-waiting-on-team Github issues: https://github.com/rust-lang/rust/pulls?q=is%3Aopen+label%3AS-waiting-on-team+label%3AT-compiler These PRs are not waiting on `T-compiler` but appear on `T-compiler` meeting agenda, so just keep an eye on them. - `I-lang-nominated`: - "Uplift `clippy::precedence` lint" [rust#117161](https://github.com/rust-lang/rust/pull/117161) - "Uplift `clippy::invalid_null_ptr_usage` lint" [rust#119220](https://github.com/rust-lang/rust/pull/119220) - "Add lint against function pointer comparisons" [rust#118833](https://github.com/rust-lang/rust/pull/118833) - "Add `wasm_c_abi` `future-incompat` lint" [rust#117918](https://github.com/rust-lang/rust/pull/117918) - "Don't make statement nonterminals match pattern nonterminals" [rust#120221](https://github.com/rust-lang/rust/pull/120221) - "Better errors with bad/missing identifiers in MBEs" [rust#118939](https://github.com/rust-lang/rust/pull/118939) - "debuginfo: Stabilize `-Z debug-macros`, `-Z collapse-macro-debuginfo` and `#[collapse_debuginfo]`" [rust#120845](https://github.com/rust-lang/rust/pull/120845) - "Emit a warning if a `match` is too complex" [rust#122685](https://github.com/rust-lang/rust/pull/122685) - "Support C23's Variadics Without a Named Parameter" [rust#124048](https://github.com/rust-lang/rust/pull/124048) - "Rename `AsyncIterator` back to `Stream`, introduce an AFIT-based `AsyncIterator` trait" [rust#119550](https://github.com/rust-lang/rust/pull/119550) - "More distinctive pretty-printing of function item types" [rust#99927](https://github.com/rust-lang/rust/pull/99927) - Waiting on author ([comment](https://github.com/rust-lang/rust/pull/99927#issuecomment-1770545963)) - "Disallow deriving (other than Copy/Clone) on types with unnamed fields" [rust#121270](https://github.com/rust-lang/rust/pull/121270) - feature `unnamed_fields` is waiting on an FCP ([comment](https://github.com/rust-lang/rust/pull/121270#issuecomment-2010191116)) --- <details><summary>generate this report</summary> (needs a Github personal token) ``` curl -qsS https://api.github.com/repos/rust-lang/rust/issues?labels=S-waiting-on-team,T-compiler \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -H "X-GitHub-Api-Version: 2022-11-28" \ -H "Accept: application/vnd.github+json" \ | jq -c '.[] | {title, number, html_url}' ``` or with `httpie`: ``` http https://api.github.com/repos/rust-lang/rust/issues?labels=S-waiting-on-team,T-compiler \ --auth-type=jwt \ --session gh-session.json \ | jq -c '.[] | {title, number, html_url}' ``` </details>