summaryrefslogtreecommitdiff
path: root/tests/ui/issues/issue-20389.rs
blob: 7d3b49ee25f4c4ef1630adec4125b5121473667e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//@ run-pass
#![allow(dead_code)]
//@ aux-build:issue-20389.rs

//@ pretty-expanded FIXME #23616

extern crate issue_20389;

struct Foo;

impl issue_20389::T for Foo {
    type C = ();
}

fn main() {}