summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-81885.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/typeck/issue-81885.stderr')
-rw-r--r--src/test/ui/typeck/issue-81885.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/ui/typeck/issue-81885.stderr b/src/test/ui/typeck/issue-81885.stderr
new file mode 100644
index 000000000..91c08bd82
--- /dev/null
+++ b/src/test/ui/typeck/issue-81885.stderr
@@ -0,0 +1,27 @@
+error[E0121]: the placeholder `_` is not allowed within types on item signatures for functions
+ --> $DIR/issue-81885.rs:1:22
+ |
+LL | const TEST4: fn() -> _ = 42;
+ | ^ not allowed in type signatures
+
+error[E0121]: the placeholder `_` is not allowed within types on item signatures for constant items
+ --> $DIR/issue-81885.rs:1:22
+ |
+LL | const TEST4: fn() -> _ = 42;
+ | ^ not allowed in type signatures
+
+error[E0121]: the placeholder `_` is not allowed within types on item signatures for functions
+ --> $DIR/issue-81885.rs:6:26
+ |
+LL | const TEST5: fn() -> _ = 42;
+ | ^ not allowed in type signatures
+
+error[E0121]: the placeholder `_` is not allowed within types on item signatures for constant items
+ --> $DIR/issue-81885.rs:6:26
+ |
+LL | const TEST5: fn() -> _ = 42;
+ | ^ not allowed in type signatures
+
+error: aborting due to 4 previous errors
+
+For more information about this error, try `rustc --explain E0121`.