mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
424 B
Rust
15 lines
424 B
Rust
pub struct Foo<A, B>(A, B);
|
|
|
|
impl<A, B> Foo<A, B> {
|
|
const HOST_SIZE: usize = std::mem::size_of::<B>();
|
|
|
|
pub fn crash() -> bool {
|
|
[5; Self::HOST_SIZE] == [6; 0]
|
|
//~^ ERROR constant expression depends on a generic parameter
|
|
//~| ERROR constant expression depends on a generic parameter
|
|
//~| ERROR can't compare `[{integer}; Self::HOST_SIZE]` with `[{integer}; 0]`
|
|
}
|
|
}
|
|
|
|
fn main() {}
|