about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-06-04 23:42:03 +0200
committerGitHub <noreply@github.com>2022-06-04 23:42:03 +0200
commitc857265b51a14625a36d4b57b3978e3e008e8983 (patch)
tree50291ea74daa74d3f50ad9e756a767d643a82d81
parent01453219de55a2e4736756b18c8900484d9dc3a8 (diff)
parent7026845706009dfeca4511a1842e6ac18b1dfcd7 (diff)
downloadrust-c857265b51a14625a36d4b57b3978e3e008e8983.tar.gz
rust-c857265b51a14625a36d4b57b3978e3e008e8983.zip
Rollup merge of #97731 - JohnTitor:issue-87142, r=compiler-errors
Add regresion test for #87142

Closes #87142
r? `@compiler-errors`
-rw-r--r--src/test/ui/generator/issue-87142.rs32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/test/ui/generator/issue-87142.rs b/src/test/ui/generator/issue-87142.rs
new file mode 100644
index 00000000000..fc10d04d46c
--- /dev/null
+++ b/src/test/ui/generator/issue-87142.rs
@@ -0,0 +1,32 @@
+// compile-flags: -Cdebuginfo=2
+// build-pass
+
+// Regression test for #87142
+// This test needs the above flags and the "lib" crate type.
+
+#![feature(type_alias_impl_trait, generator_trait, generators)]
+#![crate_type = "lib"]
+
+use std::ops::Generator;
+
+pub trait GeneratorProviderAlt: Sized {
+    type Gen: Generator<(), Return = (), Yield = ()>;
+
+    fn start(ctx: Context<Self>) -> Self::Gen;
+}
+
+pub struct Context<G: 'static + GeneratorProviderAlt> {
+    pub link: Box<G::Gen>,
+}
+
+impl GeneratorProviderAlt for () {
+    type Gen = impl Generator<(), Return = (), Yield = ()>;
+    fn start(ctx: Context<Self>) -> Self::Gen {
+        move || {
+            match ctx {
+                _ => (),
+            }
+            yield ();
+        }
+    }
+}