about summary refs log tree commit diff
path: root/src/test/ui/rfc-2632-const-trait-impl/impl-with-default-fn-pass.rs
blob: ba3fec0882b02e306b3fd9919cfb1ca83d477a71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// check-pass

#![feature(const_trait_impl)]
#![feature(const_fn_trait_bound)]

trait Tr {
    fn req(&self);

    fn prov(&self) {
        println!("lul");
        self.req();
    }

    #[default_method_body_is_const]
    fn default() {}
}

impl const Tr for u8 {
    fn req(&self) {}
    fn prov(&self) {}
}

macro_rules! impl_tr {
    ($ty: ty) => {
        impl const Tr for $ty {
            fn req(&self) {}
            fn prov(&self) {}
        }
    }
}

impl_tr!(u64);

fn main() {}