rust-lang/unsafe-code-guidelines#337 pointed out that the following code compiles:
enum Never {}
#[repr(transparent)]
struct Foo(u32, Never);
https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=67b6fd93f899912b2aec43b4cf362f31
Does that make sense? Should we change the rule here, either retroactively or in a new edition?