]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-20389.rs
Rollup merge of #107112 - eltociear:patch-19, r=albertlarsan68
[rust.git] / tests / ui / issues / issue-20389.rs
1 // run-pass
2 #![allow(dead_code)]
3 // aux-build:issue-20389.rs
4
5 // pretty-expanded FIXME #23616
6
7 extern crate issue_20389;
8
9 struct Foo;
10
11 impl issue_20389::T for Foo {
12     type C = ();
13 }
14
15 fn main() {}