Tim (Theemathas) Chirananthavat

Results 26 comments of Tim (Theemathas) Chirananthavat

Another similar case: ```rust use std::mem::MaybeUninit; #[unsafe(no_mangle)] fn demo(x: &mut MaybeUninit) { *x = MaybeUninit::new(1); *x = MaybeUninit::uninit(); } ``` On beta ([Godbolt](https://godbolt.org/z/Md6Y65Ea9)): ```asm demo: ret ``` On nightly ([Godbolt](https://godbolt.org/z/x9obch3KT)):...

The below code causes `cargo clippy` to hang in rust version `1.86.0`, but `cargo clippy` works fine for version `1.87.0-beta.3`. ```rust trait Bar { type Element: Bar; } enum Foo...

For y21's code: * `cargo clippy` still hangs on stable rust 1.86.0 * `cargo clippy` works fine on beta rust 1.87.0-beta.3, but adding `#![warn(clippy::significant_drop_tightening)]` causes it to hang again Adding...

These three lints are *very* new. All of them were merged in the past week: #15865, #15606, #15215. The main rust-lang/rust repo will periodically sync with the clippy repo. Once...

You can choose which version of clippy to check from the list at https://rust-lang.github.io/rust-clippy/ but I don't think you can get the latest information for nightly rust. It's a very...