summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-ref-in-fn-arg.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/regions-ref-in-fn-arg.stderr')
-rw-r--r--src/test/ui/regions/regions-ref-in-fn-arg.stderr19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/ui/regions/regions-ref-in-fn-arg.stderr b/src/test/ui/regions/regions-ref-in-fn-arg.stderr
new file mode 100644
index 000000000..ccba6c59b
--- /dev/null
+++ b/src/test/ui/regions/regions-ref-in-fn-arg.stderr
@@ -0,0 +1,19 @@
+error[E0515]: cannot return value referencing function parameter
+ --> $DIR/regions-ref-in-fn-arg.rs:5:5
+ |
+LL | fn arg_item(box ref x: Box<isize>) -> &'static isize {
+ | --------- function parameter borrowed here
+LL | x
+ | ^ returns a value referencing data owned by the current function
+
+error[E0515]: cannot return value referencing function parameter
+ --> $DIR/regions-ref-in-fn-arg.rs:11:22
+ |
+LL | with(|box ref x| x)
+ | --------- ^ returns a value referencing data owned by the current function
+ | |
+ | function parameter borrowed here
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0515`.