Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
ice-4121.rs
blob: e1a142fdcb67f00053d5700ec5193bf89fc7c6a6 [
file
] [
log
] [
blame
]
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
()
{}