blob: 9bc3efcc1c4bfe11d98edb4da7f73cbc7bfe6395 (
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() {}
|