rust/tests/ui/rfcs/rfc-2632-const-trait-impl/const_derives/derive-const-use.rs

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

20 lines
366 B
Rust
Raw Normal View History

2023-04-16 06:12:37 -05:00
// known-bug: #110395
2022-09-20 06:55:07 -05:00
#![feature(const_trait_impl, const_cmp, const_default_impls, derive_const)]
pub struct A;
impl const Default for A {
fn default() -> A { A }
}
impl const PartialEq for A {
fn eq(&self, _: &A) -> bool { true }
}
#[derive_const(Default, PartialEq)]
pub struct S((), A);
const _: () = assert!(S((), A) == S::default());
fn main() {}