mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
241 B
Rust
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() {}
|