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, 0 insertions, 19 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
deleted file mode 100644
index ccba6c59b..000000000
--- a/src/test/ui/regions/regions-ref-in-fn-arg.stderr
+++ /dev/null
@@ -1,19 +0,0 @@
-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`.