summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-47385.rs
blob: d43d674e9c3a069661dd429988530a855c586aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// check-pass

#![feature(associated_type_defaults)]

pub struct Foo;

pub trait Bar: From<<Self as Bar>::Input> {
    type Input = Self;
}

impl Bar for Foo {
    // Will compile with explicit type:
    // type Input = Self;
}

fn main() {}