blob: 2050ca377e8c1df2f3b65013c92813c24db662e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// https://github.com/rust-lang/rust/issues/56237
//@ 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);
}
|