]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-bigint-int.rs
Merge commit 'e228f0c16ea8c34794a6285bf57aab627c26b147' into libgccjit-codegen
[rust.git] / src / test / ui / coherence / coherence-bigint-int.rs
1 // run-pass
2 // aux-build:coherence_lib.rs
3
4 // pretty-expanded FIXME #23616
5
6 extern crate coherence_lib as lib;
7 use lib::Remote1;
8
9 pub struct BigInt;
10
11 impl Remote1<BigInt> for isize { }
12
13 fn main() { }