diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/coherence/coherence-bigint-vecint.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/ui/coherence/coherence-bigint-vecint.rs b/src/test/ui/coherence/coherence-bigint-vecint.rs new file mode 100644 index 000000000..a5dba90be --- /dev/null +++ b/src/test/ui/coherence/coherence-bigint-vecint.rs @@ -0,0 +1,13 @@ +// run-pass +// aux-build:coherence_lib.rs + +// pretty-expanded FIXME #23616 + +extern crate coherence_lib as lib; +use lib::Remote1; + +pub struct BigInt; + +impl Remote1<BigInt> for Vec<isize> { } + +fn main() { } |