]> git.proxmox.com Git - rustc.git/blame - src/test/ui/coherence/coherence-iterator-vec.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / coherence / coherence-iterator-vec.rs
CommitLineData
b7449926 1// run-pass
0bf4aa26 2#![allow(dead_code)]
c34b1796 3// aux-build:coherence_lib.rs
223e47cc 4
c34b1796
AL
5// pretty-expanded FIXME #23616
6
7extern crate coherence_lib as lib;
1a4d82fc
JJ
8use lib::Remote1;
9
10struct Foo<T>(T);
11
12impl<T> Remote1<T> for Foo<T> { }
223e47cc
LB
13
14fn main() { }