diff options
| author | Graydon Hoare <[email protected]> | 2010-10-22 15:37:42 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-10-22 15:37:42 -0700 |
| commit | 6d47d2abdee023f46b35b95e26e418ab9d67d39c (patch) | |
| tree | 1de9d41c4903b1fd1f8b6cf233d68c8fb7a4d7c4 /src/comp/front/ast.rs | |
| parent | rustboot: If the user tries to instantiate a non-parametric type with type pa... (diff) | |
| download | rust-6d47d2abdee023f46b35b95e26e418ab9d67d39c.tar.xz rust-6d47d2abdee023f46b35b95e26e418ab9d67d39c.zip | |
Implement check-exprs, un-xfail 5 rustc tests.
Diffstat (limited to 'src/comp/front/ast.rs')
| -rw-r--r-- | src/comp/front/ast.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index 2135a97d..0d042d0d 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -67,6 +67,7 @@ tag stmt_ { stmt_decl(@decl); stmt_ret(option[@expr]); stmt_log(@expr); + stmt_check_expr(@expr); stmt_expr(@expr); } |