rust/tests/ui/issues/issue-19129-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
224 B
Rust
Raw Normal View History

// check-pass
// pretty-expanded FIXME #23616
2014-12-15 02:10:51 +00:00
trait Trait<Input> {
type Output;
fn method() -> <Self as Trait<Input>>::Output;
}
impl<T> Trait<T> for () {
type Output = ();
fn method() {}
}
fn main() {}