mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
12 lines
244 B
Rust
12 lines
244 B
Rust
#![feature(associated_const_equality)]
|
|
|
|
trait T {
|
|
type A: S<C<X = 0i32> = 34>;
|
|
//~^ ERROR associated item constraints are not allowed here
|
|
//~| ERROR associated item constraints are not allowed here
|
|
}
|
|
|
|
trait S {
|
|
const C: i32;
|
|
}
|