diff options
Diffstat (limited to 'src/comp/front/ast.rs')
| -rw-r--r-- | src/comp/front/ast.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index 830856e0..f70c6ac3 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -149,9 +149,9 @@ type _mod = rec(vec[@item] items, type item = spanned[item_]; tag item_ { - item_fn(ident, _fn, def_id); + item_fn(ident, _fn, def_id, ann); item_mod(ident, _mod, def_id); - item_ty(ident, @ty, def_id); + item_ty(ident, @ty, def_id, ann); } |