mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
edafbaffb2
- Either explicitly annotate `let x: () = expr;` where `x` has unit type, or remove the unit binding to leave only `expr;` instead. - Fix disjoint-capture-in-same-closure test
20 lines
474 B
Rust
20 lines
474 B
Rust
// build-fail
|
|
|
|
trait ZeroSized: Sized {
|
|
const I_AM_ZERO_SIZED: ();
|
|
fn requires_zero_size(self);
|
|
}
|
|
|
|
impl<T: Sized> ZeroSized for T {
|
|
const I_AM_ZERO_SIZED: () = [()][std::mem::size_of::<Self>()]; //~ ERROR evaluation of `<u32 as ZeroSized>::I_AM_ZERO_SIZED` failed
|
|
fn requires_zero_size(self) {
|
|
Self::I_AM_ZERO_SIZED;
|
|
println!("requires_zero_size called");
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
().requires_zero_size();
|
|
42_u32.requires_zero_size();
|
|
}
|