Sign in
android
/
toolchain
/
rustc
/
809ee4ad5082233770316fd4303aafde8eaebcb9
/
.
/
src
/
test
/
ui
/
dead-code-impl.rs
blob: 84829c98e573908cdddc1a50890d25680ceca2b3 [
file
]
// run-pass
#![
deny
(
dead_code
)]
pub
struct
GenericFoo
<
T
>(
T
);
type
Foo
=
GenericFoo
<
u32
>;
impl
Foo
{
fn
bar
(
self
)
->
u8
{
0
}
}
fn
main
()
{
println
!(
"{}"
,
GenericFoo
(
0
).
bar
());
}