mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
191 B
Rust
13 lines
191 B
Rust
#![feature(associated_const_equality)]
|
|
|
|
trait T {
|
|
type A: S<C<X = 0i32> = 34>;
|
|
//~^ ERROR associated type bindings are not allowed here
|
|
}
|
|
|
|
trait S {
|
|
const C: i32;
|
|
}
|
|
|
|
fn main() {}
|