summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-56237.rs
blob: 534b85acec82c1bf8bd6bff628e538fafd57dc3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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);
}