]> git.lizzy.rs Git - rust.git/blob - tests/ui/coherence/coherence-pair-covered-uncovered.rs
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[rust.git] / tests / ui / coherence / coherence-pair-covered-uncovered.rs
1 // aux-build:coherence_lib.rs
2
3 extern crate coherence_lib as lib;
4 use lib::{Remote, Pair};
5
6 struct Local<T>(T);
7
8 impl<T,U> Remote for Pair<T,Local<U>> { }
9 //~^ ERROR E0117
10
11 fn main() { }