2019-08-12 11:00:47 -05:00
|
|
|
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 {
|
2020-04-08 11:47:09 -05:00
|
|
|
[5; Self::HOST_SIZE] == [6; 0]
|
|
|
|
//~^ ERROR constant expression depends on a generic parameter
|
2020-07-05 07:02:01 -05:00
|
|
|
//~| ERROR constant expression depends on a generic parameter
|
2023-01-14 12:32:17 -06:00
|
|
|
//~| ERROR can't compare `[{integer}; Self::HOST_SIZE]` with `[{integer}; 0]`
|
2019-08-12 11:00:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|