mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 03:38:29 +00:00
11 lines
238 B
Rust
11 lines
238 B
Rust
//@ compile-flags: -Znext-solver
|
|
#![feature(const_trait_impl, effects)]
|
|
#![allow(incomplete_features)]
|
|
|
|
pub trait A {}
|
|
|
|
impl const A for () {}
|
|
//~^ ERROR: const `impl` for trait `A` which is not marked with `#[const_trait]`
|
|
|
|
fn main() {}
|