mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
13 lines
198 B
Rust
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() {}
|