about summary refs log tree commit diff
path: root/tests/ui/traits/object/lifetime-first.rs
blob: 867ee08f48ca532cdfa73d504258fc402e31f4b1 (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");
}