mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 22:06:53 +00:00
11 lines
177 B
Rust
11 lines
177 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;
|
|
}
|