blob: 3c0a235f3ec2c484a49bc9f1c38c1f79757e2fda [file] [log] [blame] [edit]
//@ run-pass
use std::ops::Deref;
fn foo<P>(_value: <P as Deref>::Target)
where
P: Deref,
<P as Deref>::Target: Sized,
{}
fn main() {
foo::<Box<u32>>(2);
}