]> git.proxmox.com Git - rustc.git/blame - src/test/ui/coherence/coherence-bigint-param.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / coherence / coherence-bigint-param.rs
CommitLineData
c34b1796 1// aux-build:coherence_lib.rs
223e47cc 2
c34b1796 3extern crate coherence_lib as lib;
1a4d82fc
JJ
4use lib::Remote1;
5
6pub struct BigInt;
7
8impl<T> Remote1<BigInt> for T { }
60c5eb7d 9//~^ ERROR E0210
223e47cc
LB
10
11fn main() { }