summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/object/lifetime-first.rs
blob: 33757cb7c0ab1da7efa9d1e5458efb1ce606a8c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-pass
use std::fmt::Display;

static BYTE: u8 = 33;

fn main() {
    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");
}