2025-03-22 18:51:33 +00:00
|
|
|
//@ revisions: current next
|
|
|
|
|
//@ ignore-compare-mode-next-solver (explicit revisions)
|
|
|
|
|
//@[next] compile-flags: -Znext-solver
|
|
|
|
|
|
2019-08-12 19:00:47 +03: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 19:47:09 +03:00
|
|
|
[5; Self::HOST_SIZE] == [6; 0]
|
2025-03-22 18:51:33 +00:00
|
|
|
//[current]~^ ERROR constant expression depends on a generic parameter
|
|
|
|
|
//[current]~| ERROR constant expression depends on a generic parameter
|
|
|
|
|
//[current]~| ERROR constant expression depends on a generic parameter
|
|
|
|
|
//[current]~| ERROR can't compare `[{integer}; Self::HOST_SIZE]` with `[{integer}; 0]`
|
|
|
|
|
//[next]~^^^^^ ERROR type annotations needed
|
2019-08-12 19:00:47 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|