summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-20005.rs
blob: 36350bff100dd5928c2fe825d2ca97c1bafadb24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
trait From<Src> {
    type Result;

    fn from(src: Src) -> Self::Result;
}

trait To {
    fn to<Dst>(
        self
    ) -> <Dst as From<Self>>::Result where Dst: From<Self> { //~ ERROR the size for values of type
        From::from(self)
    }
}

fn main() {}