rust/tests/ui/traits/const-traits/inherent-impl-const-bounds.rs
Michael Goulet e91267f3f0 Move tests
2024-10-22 00:03:09 +00:00

23 lines
265 B
Rust

//@ check-pass
#![feature(const_trait_impl)]
struct S;
#[const_trait]
trait A {}
#[const_trait]
trait B {}
impl const A for S {}
impl const B for S {}
impl S {
const fn a<T: ~const A>() where T: ~const B {
}
}
const _: () = S::a::<S>();
fn main() {}