about summary refs log tree commit diff
path: root/tests/ui/codegen/mono-item-collector-default-impl-58375.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/codegen/mono-item-collector-default-impl-58375.rs')
-rw-r--r--tests/ui/codegen/mono-item-collector-default-impl-58375.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/ui/codegen/mono-item-collector-default-impl-58375.rs b/tests/ui/codegen/mono-item-collector-default-impl-58375.rs
new file mode 100644
index 00000000000..f00e79e0dc5
--- /dev/null
+++ b/tests/ui/codegen/mono-item-collector-default-impl-58375.rs
@@ -0,0 +1,25 @@
+// https://github.com/rust-lang/rust/issues/58375
+// Make sure that the mono-item collector does not crash when trying to
+// instantiate a default impl for DecodeUtf16<<u8 as A>::Item>
+// See https://github.com/rust-lang/rust/issues/58375
+
+//@ build-pass
+//@ compile-flags:-C link-dead-code
+
+#![crate_type = "rlib"]
+
+pub struct DecodeUtf16<I>(I);
+
+pub trait Arbitrary {
+    fn arbitrary() {}
+}
+
+pub trait A {
+    type Item;
+}
+
+impl A for u8 {
+    type Item = char;
+}
+
+impl Arbitrary for DecodeUtf16<<u8 as A>::Item> {}