]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-all-remote.rs
Rollup merge of #104750 - mati865:bump-fd-lock-again, r=jyn514
[rust.git] / src / test / ui / coherence / coherence-all-remote.rs
1 // aux-build:coherence_lib.rs
2
3 extern crate coherence_lib as lib;
4 use lib::Remote1;
5
6 impl<T> Remote1<T> for isize { }
7 //~^ ERROR E0210
8
9 fn main() { }