rust-clippy/tests/ui/crashes/ice-4121.rs
2019-12-31 20:55:12 +09:00

13 lines
198 B
Rust

use std::mem;
pub struct Foo<A, B>(A, B);
impl<A, B> Foo<A, B> {
const HOST_SIZE: usize = mem::size_of::<B>();
pub fn crash() -> bool {
Self::HOST_SIZE == 0
}
}
fn main() {}