rust/tests/ui/traits/const-traits/impl-with-default-fn-pass.rs

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

28 lines
386 B
Rust
Raw Normal View History

//@ check-pass
2024-06-30 17:08:45 +00:00
//@ compile-flags: -Znext-solver
2024-06-25 09:50:01 +00:00
#![allow(incomplete_features)]
#![feature(const_trait_impl, effects)]
#[const_trait]
trait Tr {
fn req(&self);
fn default() {}
}
impl const Tr for u8 {
fn req(&self) {}
}
macro_rules! impl_tr {
($ty: ty) => {
impl const Tr for $ty {
fn req(&self) {}
}
}
}
impl_tr!(u64);
fn main() {}