rust/tests/ui/traits/object/lifetime-first.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
296 B
Rust
Raw Normal View History

// run-pass
use std::fmt::Display;
static BYTE: u8 = 33;
fn main() {
2019-05-28 13:47:21 -05:00
let x: &(dyn 'static + Display) = &BYTE;
let y: Box<dyn 'static + Display> = Box::new(BYTE);
let xstr = format!("{}", x);
let ystr = format!("{}", y);
assert_eq!(xstr, "33");
assert_eq!(ystr, "33");
}