2024-06-26 16:36:42 +00:00
|
|
|
//@ compile-flags: -Znext-solver
|
2023-07-27 15:51:02 +00:00
|
|
|
|
2024-10-30 18:03:44 +00:00
|
|
|
#![feature(const_trait_impl)]
|
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]
|
2025-03-11 12:08:45 +00:00
|
|
|
trait Bar: [const] Foo {}
|
2022-01-29 01:49:15 +11:00
|
|
|
|
|
|
|
|
struct S;
|
|
|
|
|
impl Foo for S {
|
|
|
|
|
fn a(&self) {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl const Bar for S {}
|
2024-08-24 14:01:00 +08:00
|
|
|
//~^ ERROR the trait bound
|
2022-01-29 01:49:15 +11:00
|
|
|
|
|
|
|
|
fn main() {}
|