2018-09-06 12:41:12 +00:00
|
|
|
// run-pass
|
2021-05-13 14:42:25 +00:00
|
|
|
// revisions: mirunsafeck thirunsafeck
|
|
|
|
// [thirunsafeck]compile-flags: -Z thir-unsafeck
|
2018-09-06 12:41:12 +00:00
|
|
|
|
2016-08-26 16:23:42 +00:00
|
|
|
use std::fmt;
|
|
|
|
|
2016-08-22 16:56:14 +00:00
|
|
|
union U {
|
2016-08-26 16:23:42 +00:00
|
|
|
a: u8
|
2016-08-22 16:56:14 +00:00
|
|
|
}
|
|
|
|
|
2016-08-26 16:23:42 +00:00
|
|
|
impl fmt::Display for U {
|
2018-05-08 23:41:44 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2016-08-26 16:23:42 +00:00
|
|
|
unsafe { write!(f, "Oh hai {}", self.a) }
|
|
|
|
}
|
|
|
|
}
|
2016-08-22 16:56:14 +00:00
|
|
|
|
|
|
|
fn main() {
|
2016-08-26 16:23:42 +00:00
|
|
|
assert_eq!(U { a: 2 }.to_string(), "Oh hai 2");
|
2016-08-22 16:56:14 +00:00
|
|
|
}
|