diff options
Diffstat (limited to 'tests/ui/coherence/coherence-bigint-vecint.rs')
| -rw-r--r-- | tests/ui/coherence/coherence-bigint-vecint.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/coherence/coherence-bigint-vecint.rs b/tests/ui/coherence/coherence-bigint-vecint.rs new file mode 100644 index 00000000000..a5dba90be5c --- /dev/null +++ b/tests/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() { } |
