summaryrefslogtreecommitdiffstats
path: root/examples/17_borrow-error-fixed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/17_borrow-error-fixed.rs')
-rw-r--r--examples/17_borrow-error-fixed.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/17_borrow-error-fixed.rs b/examples/17_borrow-error-fixed.rs
new file mode 100644
index 0000000..06ff060
--- /dev/null
+++ b/examples/17_borrow-error-fixed.rs
@@ -0,0 +1,10 @@
+fn foo () -> Box<int> {
+ let x = box 2;
+ return x;
+}
+
+fn main () {
+ let x = foo();
+ println!("{}", *x);
+}
+