summaryrefslogtreecommitdiffstats
path: root/tests/ui/stability-attribute/default-body-stability-ok-impls.rs
blob: b29d45256bf398efb1b18e4d27a4569a3ad3109f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// check-pass
// aux-build:default_body.rs
#![crate_type = "lib"]

extern crate default_body;

use default_body::{Equal, JustTrait};

struct Type;

impl JustTrait for Type {
    const CONSTANT: usize = 1;

    fn fun() {}

    fn fun2() {}
}

impl Equal for Type {
    fn eq(&self, other: &Self) -> bool {
        false
    }
}