blob: 66452c367767941856b2427b8f03c67074c225a3 [file] [log] [blame]
//@ 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();
}