rust/src/test
Marijn Haverbeke 4e03112141 Add a pass-by-copy parameter passing convention
This is intended to solve the problem of how to pass arguments to
constructor functions -- you want to move in rvalues, but not have to
explicitly copy stuff that is not an rvalue. The by-copy passing
convention will ensure the callee gets its own copy of the value. For
rvalues, it'll just pass off the value. For lvalues, it'll make a
copy.

Issue #1177
2011-11-18 12:49:00 +01:00
..
bench Use attributes for native module ABI and link name 2011-11-16 11:35:13 -08:00
compile-fail Preparation for kind system overhaul 2011-11-18 10:52:28 +01:00
pretty Add regression tests for previously ambiguous syntactic forms 2011-09-15 08:47:23 -07:00
run-fail Rehabilitate run-fail/linked-failure4.rs 2011-11-11 16:52:07 -08:00
run-pass Add a pass-by-copy parameter passing convention 2011-11-18 12:49:00 +01:00
stdtest remove compile-command from local variable blocks 2011-11-17 11:46:13 -08:00