rust/tests/ui/associated-item/associated-item-duplicate-b...

12 lines
241 B
Rust

trait Adapter {
const LINKS: usize;
}
struct Foo<A: Adapter> {
adapter: A,
links: [u32; A::LINKS], // Shouldn't suggest bounds already there.
//~^ ERROR generic parameters may not be used in const operations
}
fn main() {}