Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-5280.rs
blob: 66452c367767941856b2427b8f03c67074c225a3 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
type
FontTableTag
=
u32
;
trait
FontTableTagConversions
{
fn
tag_to_string
(
self
);
}
impl
FontTableTagConversions
for
FontTableTag
{
fn
tag_to_string
(
self
)
{
let
_
=
&
self
;
}
}
pub
fn
main
()
{
5.tag
_to_string
();
}