summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-81885.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/typeck/issue-81885.rs')
-rw-r--r--src/test/ui/typeck/issue-81885.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/typeck/issue-81885.rs b/src/test/ui/typeck/issue-81885.rs
new file mode 100644
index 000000000..fb3949478
--- /dev/null
+++ b/src/test/ui/typeck/issue-81885.rs
@@ -0,0 +1,9 @@
+const TEST4: fn() -> _ = 42;
+ //~^ ERROR the placeholder `_` is not allowed within types on item signatures for functions
+ //~| ERROR the placeholder `_` is not allowed within types on item signatures for constant items
+
+fn main() {
+ const TEST5: fn() -> _ = 42;
+ //~^ ERROR the placeholder `_` is not allowed within types on item signatures for functions
+ //~| ERROR the placeholder `_` is not allowed within types on item signatures for constant items
+}