]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-bigint-param.rs
Rollup merge of #104487 - klensy:ntapi, r=Mark-Simulacrum
[rust.git] / src / test / ui / coherence / coherence-bigint-param.rs
1 // aux-build:coherence_lib.rs
2
3 extern crate coherence_lib as lib;
4 use lib::Remote1;
5
6 pub struct BigInt;
7
8 impl<T> Remote1<BigInt> for T { }
9 //~^ ERROR E0210
10
11 fn main() { }