]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-overlapping-pairs.rs
Rollup merge of #104744 - notriddle:notriddle/struct-fields-display-block, r=Guillaum...
[rust.git] / src / test / ui / coherence / coherence-overlapping-pairs.rs
1 // aux-build:coherence_lib.rs
2
3 extern crate coherence_lib as lib;
4 use lib::Remote;
5
6 struct Foo;
7
8 impl<T> Remote for lib::Pair<T,Foo> { }
9 //~^ ERROR E0117
10
11 fn main() { }