asquared31415
asquared31415
> I want to make sure I've fairly represented the reasoning you had at the time and that you're convinced about the removal of the warning I am fairly certain...
#121099 is probably a blocker, a trivial to encounter ICE
"test compilation failed even though it shouldn't"... but it's a `build-fail` test???
ah i see, i was under the impression `repr(align)` increased the size for structs that would otherwise be 1-ZSTs, i can probably add an exception if it's needed then? i...
> Unfortunately I don't know that this is the right place to emit this check [...] I explored an alternative approach doing the error in the same location that the...
@rustbot ready will open a zulip thread about the potential follow up PR for `repr(align)`, though personally i don't think it's necessary
I think it makes sense to say this is one of those cases that you have to go "I'm smarter than the compiler" and `allow` it on a given use....
I'm personally always of the opinion "if it's not meaningful, don't let the user even try", so I would disable those functions entirely on sim. I can put up a...
This may be a bug in clippy's implementation of the lint: https://rust-lang.zulipchat.com/#narrow/stream/257328-clippy/topic/Possible.20bug.3F/near/410324973
I believe this is the same issue and this can produce incredibly surprising behavior. [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=f67c520c0adbb5f8d665a45f73c98d04) ```rs #![deny(clippy::all, clippy::pedantic)] fn format() { println!("my format function"); } use format as renamed; fn...