summaryrefslogtreecommitdiffstats
path: root/src/test/ui/dyn-star/check-size-at-cast-polymorphic.rs
blob: 5c0a3d256f60742da6c3a2d0b19a428c5f3251b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// check-pass

#![feature(dyn_star)]
#![allow(incomplete_features)]

use std::fmt::Debug;

fn dyn_debug(_: (dyn* Debug + '_)) {

}

fn polymorphic<T: Debug>(t: &T) {
    dyn_debug(t);
}

fn main() {}