rust/tests/ui/dyn-star/check-size-at-cast-polymorphic-bad.rs

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

16 lines
269 B
Rust
Raw Normal View History

#![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);
2023-02-07 12:02:20 -06:00
//~^ ERROR `&T` needs to have the same alignment and size as a pointer
}
fn main() {}