mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
18 lines
266 B
Rust
18 lines
266 B
Rust
//@ 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();
|
|
}
|