mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
10 lines
177 B
Rust
10 lines
177 B
Rust
//@ compile-flags: -Znext-solver
|
|
#![feature(const_trait_impl)]
|
|
|
|
pub trait A {}
|
|
|
|
impl const A for () {}
|
|
//~^ ERROR: const `impl` for trait `A` which is not `const`
|
|
|
|
fn main() {}
|