2022-01-28 08:49:15 -06:00
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
|
2022-08-28 01:27:31 -05:00
|
|
|
#[const_trait]
|
2022-01-28 08:49:15 -06:00
|
|
|
trait Foo {
|
|
|
|
fn a(&self);
|
|
|
|
}
|
2022-08-28 01:27:31 -05:00
|
|
|
#[const_trait]
|
2022-01-28 08:49:15 -06:00
|
|
|
trait Bar: ~const Foo {}
|
|
|
|
|
|
|
|
struct S;
|
|
|
|
impl Foo for S {
|
|
|
|
fn a(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl const Bar for S {}
|
|
|
|
//~^ ERROR the trait bound
|
|
|
|
|
|
|
|
fn main() {}
|