summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/cannot-call-unsized-via-ptr.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/closures/cannot-call-unsized-via-ptr.stderr')
-rw-r--r--tests/ui/closures/cannot-call-unsized-via-ptr.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/closures/cannot-call-unsized-via-ptr.stderr b/tests/ui/closures/cannot-call-unsized-via-ptr.stderr
new file mode 100644
index 000000000..9ecc66d5c
--- /dev/null
+++ b/tests/ui/closures/cannot-call-unsized-via-ptr.stderr
@@ -0,0 +1,12 @@
+error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
+ --> $DIR/cannot-call-unsized-via-ptr.rs:5:24
+ |
+LL | let f: fn([u8]) = |_result| {};
+ | ^^^^^^^ doesn't have a size known at compile-time
+ |
+ = help: the trait `Sized` is not implemented for `[u8]`
+ = note: all function arguments must have a statically known size
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.