summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/assoc_const_generic_impl.rs
blob: 71d947b0c2c70fe3cc3016e481aa29579643f641 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// build-fail

#![warn(const_err)]

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>()]; //~ WARN any use of this value
    //~| WARN this was previously accepted by the compiler but is being phased out
    fn requires_zero_size(self) {
        let () = Self::I_AM_ZERO_SIZED; //~ ERROR erroneous constant encountered
        println!("requires_zero_size called");
    }
}

fn main() {
    ().requires_zero_size();
    42_u32.requires_zero_size();
}