rust/tests/ui/stability-attribute/default-body-stability-ok-impls.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
330 B
Rust
Raw Permalink Normal View History

//@ 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() {}
2023-05-05 18:29:52 -05:00
fn fun2() {}
}
impl Equal for Type {
fn eq(&self, other: &Self) -> bool {
false
}
}