2021-07-10 15:58:16 +08:00
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
|
|
2022-03-16 20:49:54 +11:00
|
|
|
#[const_trait]
|
2021-07-10 15:58:16 +08:00
|
|
|
trait A {
|
2025-08-09 20:41:01 +02:00
|
|
|
#[const_trait] //~ ERROR attribute cannot be used on
|
2022-03-16 20:49:54 +11:00
|
|
|
fn foo(self);
|
2021-07-10 15:58:16 +08:00
|
|
|
}
|
|
|
|
|
|
2025-08-09 20:41:01 +02:00
|
|
|
#[const_trait] //~ ERROR attribute cannot be used on
|
2021-07-10 15:58:16 +08:00
|
|
|
fn main() {}
|