summaryrefslogtreecommitdiffstats
path: root/tests/ui/dyn-star/check-size-at-cast-polymorphic-bad.rs
blob: 85749aa7b00e2a886db52603620c04cdd4e05662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(dyn_star)]
#![allow(incomplete_features)]

use std::fmt::Debug;

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

}

fn polymorphic<T: Debug + ?Sized>(t: &T) {
    dyn_debug(t);
    //~^ ERROR `&T` needs to have the same alignment and size as a pointer
}

fn main() {}