2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2019-03-12 00:49:17 +00:00
|
|
|
//@ aux-build:issue-20389.rs
|
2015-01-01 11:16:44 -05:00
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2015-01-01 11:16:44 -05:00
|
|
|
extern crate issue_20389;
|
|
|
|
|
|
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
|
|
impl issue_20389::T for Foo {
|
|
|
|
|
type C = ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|