2022-08-27 23:17:12 -05:00
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
|
|
|
|
pub trait A {}
|
2022-10-04 03:59:20 -05:00
|
|
|
//~^ HELP: mark `A` as const
|
2022-08-27 23:17:12 -05:00
|
|
|
|
|
|
|
impl const A for () {}
|
2022-10-04 03:59:20 -05:00
|
|
|
//~^ ERROR: const `impl` for trait `A` which is not marked with `#[const_trait]`
|
2022-08-27 23:17:12 -05:00
|
|
|
|
|
|
|
fn main() {}
|