summaryrefslogtreecommitdiffstats
path: root/tests/ui/coroutine/gen_fn.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/coroutine/gen_fn.rs')
-rw-r--r--tests/ui/coroutine/gen_fn.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/coroutine/gen_fn.rs b/tests/ui/coroutine/gen_fn.rs
new file mode 100644
index 000000000..da515f263
--- /dev/null
+++ b/tests/ui/coroutine/gen_fn.rs
@@ -0,0 +1,8 @@
+// revisions: e2024 none
+//[e2024] compile-flags: --edition 2024 -Zunstable-options
+
+gen fn foo() {}
+//[none]~^ ERROR: expected one of `#`, `async`, `const`, `default`, `extern`, `fn`, `pub`, `unsafe`, or `use`, found `gen`
+//[e2024]~^^ ERROR: `gen` functions are not yet implemented
+
+fn main() {}