]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-iterator-vec-any-elem.rs
Rollup merge of #104873 - RalfJung:therefore, r=Dylan-DPC
[rust.git] / src / test / ui / coherence / coherence-iterator-vec-any-elem.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::Remote1;
9
10 struct Foo<T>(T);
11
12 impl<T,U> Remote1<U> for Foo<T> { }
13
14 fn main() { }