summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-2632-const-trait-impl/default-method-body-is-const-same-trait-ck.rs
blob: da27724007d276ceae5e70c2ed6c85756077ed22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(const_trait_impl, effects)]

#[const_trait]
pub trait Tr {
    fn a(&self) {}

    fn b(&self) {
        ().a()
        //~^ ERROR the trait bound
    }
}

impl Tr for () {}

fn main() {}