Files
rust/tests/ui/traits/const-traits/super-traits.rs

28 lines
375 B
Rust
Raw Normal View History

//@ check-pass
2024-06-26 16:36:42 +00:00
//@ compile-flags: -Znext-solver
#![allow(incomplete_features)]
2024-06-25 09:50:01 +00:00
#![feature(const_trait_impl, effects)]
2022-01-29 01:49:15 +11:00
2022-08-28 06:27:31 +00:00
#[const_trait]
2022-01-29 01:49:15 +11:00
trait Foo {
fn a(&self);
}
2022-08-28 06:27:31 +00:00
#[const_trait]
2022-01-29 01:49:15 +11:00
trait Bar: ~const Foo {}
struct S;
impl const Foo for S {
fn a(&self) {}
}
impl const Bar for S {}
const fn foo<T: ~const Bar>(t: &T) {
t.a();
}
const _: () = foo(&S);
fn main() {}