]> git.lizzy.rs Git - rust.git/blob - tests/ui/coherence/coherence-covered-type-parameter.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / coherence / coherence-covered-type-parameter.rs
1 // run-pass
2 #![allow(dead_code)]
3 // aux-build:coherence_lib.rs
4
5 // pretty-expanded FIXME #23616
6
7 extern crate coherence_lib as lib;
8 use lib::Remote;
9
10 struct Foo<T>(T);
11
12 impl<T> Remote for Foo<T> { }
13
14 fn main() { }