about summary refs log tree commit diff
path: root/tests/ui/traits/const-traits/const-impl-requires-const-trait.rs
blob: bd6f476f8792a24fa798f1da2103bef99bd95fa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ known-bug: #110395

#![feature(const_trait_impl, effects)]

pub trait A {}
// FIXME ~^ HELP: mark `A` as const

impl const A for () {}
// FIXME ~^ ERROR: const `impl` for trait `A` which is not marked with `#[const_trait]`

fn main() {}