diff options
| author | Graydon Hoare <[email protected]> | 2010-07-01 23:50:58 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-01 23:50:58 -0700 |
| commit | 60c6ae3ad539d7c32192a8a48f35e51bae828489 (patch) | |
| tree | 47aaeaf25e27c501a89306812357507504f89379 /src/test/run-pass/list.rs | |
| parent | Yeah. Not even a semantic mix-up: just a damn typo. (diff) | |
| download | rust-60c6ae3ad539d7c32192a8a48f35e51bae828489.tar.xz rust-60c6ae3ad539d7c32192a8a48f35e51bae828489.zip | |
Box arguments that are supposed to be boxed.
Diffstat (limited to 'src/test/run-pass/list.rs')
| -rw-r--r-- | src/test/run-pass/list.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/list.rs b/src/test/run-pass/list.rs index 38601f8f..c615b67c 100644 --- a/src/test/run-pass/list.rs +++ b/src/test/run-pass/list.rs @@ -3,5 +3,5 @@ type list = tag(cons(int,@list), nil()); fn main() { - cons(10, cons(11, cons(12, nil()))); + cons(10, @cons(11, @cons(12, @nil()))); } |