diff options
Diffstat (limited to 'src/comp/front/ast.rs')
| -rw-r--r-- | src/comp/front/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index 553a49f6..71065150 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -46,7 +46,7 @@ type block_ = rec(vec[@stmt] stmts, type pat = spanned[pat_]; tag pat_ { pat_wild(ann); - pat_bind(ident, ann); + pat_bind(ident, def_id, ann); pat_tag(ident, vec[@pat], ann); } |